Bulk rename of files in subfolders

Hello All
I have a folder containing 40 subfolders, and inside each of these subfolders are a number of files (between 4 and 45 each) totalling over 500 files.
Each filename starts with a string "orginalstring".
What I would like is the easiest way (whether using Automator or not) to replace all 500+ "orginalstring" with "replacementstring".
Many thanks for your help. Philip

Although the original poster's problem is long solved and it doesn't directly help.  Here is an appleapplescript that will perform a batch rename of selected files with ne names provided in a .csv file.  SImply open applescript, paste in an run.  Its not the most robust - it will fail if you try to create duplicate files, but for the most part it does a good job for a quick and dirty.... Beanlander
-- Bulk Rename files from .csv file
on run {}
    set file_NewFilenames to choose file with prompt "Choose .csv file containing new filenames"
    set files_ToBeRenamed to choose file with prompt "Choose files to be renamed" with multiple selections allowed
    set filedata_NewFilenames to read file_NewFilenames
    set list_NewFilenames to paragraphs of filedata_NewFilenames
    -- determine the maximum number of files that can be renamed
    set num_MaxFilesToRename to count of list_NewFilenames
    if num_MaxFilesToRename > (count of files_ToBeRenamed) then
        set num_MaxFilesToRename to count of files_ToBeRenamed
    end if
    --display dialog "Renaming " & num_MaxFilesToRename & " files…"
    repeat with i from 1 to num_MaxFilesToRename
        try
            set fileToBeRenamed to item i of files_ToBeRenamed
            set newName to item i of list_NewFilenames
            set AppleScript's text item delimiters to "\""
            set newName to (text items of newName)
            set AppleScript's text item delimiters to ""
            set newName to (newName as string)
            --display dialog newName as text
            tell application "Finder"
                set filenameExtension to name extension of fileToBeRenamed
                set name of fileToBeRenamed to newName & "." & filenameExtension
            end tell
        on error
            display dialog "Could not rename: " & fileToBeRenamed giving up after 3
        end try
    end repeat
end run

Similar Messages

  • How can i bulk rename music files in reverse order from artist - song name to songname - artist

    How can I bulk rename music files in reverse order from artist - song name to songname - artist.
    I actually dont need to rename the actual files.
    Its just i have a huge txt list of 100,000 music names that are listed as so..
    Artist - Song Name
    Artist - Song Name
    Artist - Song Name
    Artist - Song Name
    Artist - Song Name
    Artist - Song Name
    and i need this list to reverse it self so it is listed in the list as
    Song Name - Artist
    Song Name - Artist
    Song Name - Artist
    Song Name - Artist
    Song Name - Artist
    Song Name - Artist
    Song Name - Artist
    Im sure there is some kinda way to auto a mix of applescript/automator/terminal to do something like:  all char before the "-" replace with the chars after the "-".
    Please some one help me if you know how I can pull this off

    How can I bulk rename music files in reverse order from artist - song name to songname - artist.
    I actually dont need to rename the actual files.
    Its just i have a huge txt list of 100,000 music names that are listed as so.
    I wonder if we haven't misunderstood what you were asking for. Could it be that you have not a huge file, but just a huge list of names in many small files. If that's the case, you should rather use the following script instead of the previous one.
    Since this script does not rename the files, make a backup of your files before running it.
    set theFolder to choose folder -- the folder containing your text files
    tell application "Finder"
        set theNames to name of files of theFolder whose name extension is "txt"
    end tell
    set theTextFiles to {}
    set theFolderPath to POSIX path of theFolder
    repeat with thisName in theNames
        copy theFolderPath & thisName to the end of theTextFiles
    end repeat
    repeat with thisFile in theTextFiles
        set F1 to open for access thisFile
        set theText to read F1
        close access F1
        set theParagraphs to paragraphs of theText
        set bigList to (a reference to theParagraphs)
        set theNewParagraphs to {}
        set bigNewList to (a reference to theNewParagraphs)
        repeat with X in bigList
            set P to offset of " - " in X
            if P = 0 then
                set Y to X
            else
                set Y to text (P + 3) through -1 of X & " - " & text 1 through (P - 1) of X
            end if
            copy Y & return to the end of bigNewList
        end repeat
        set theNewText to text 1 through -2 of (bigNewList as text)
        set F2 to open for access thisFile with write permission
        set eof F2 to 0
        write theNewText to F2
        close access F2
    end repeat
    display dialog "Done!" buttons {"OK"} default button 1 with icon 1
    Message was edited by: Pierre L.

  • How can I bulk sort by capture time and  bulk rename files off multiple cameras?

    I have found many renaming utilities, including bridge, but I have not run across any that allows bulk / batch capture time sort and rename?
    I can sort by capture time in Lightroom 3, but when I export it puts the files back in original order....maybe I am doing something wrong....that would not surprise me. 
    I just tried sorting by Capture Time in LR3 and then exporting and renaming.... renamed but not in the capture time sort order....    
    so I am open to any suggestions... I shoot 2 cameras 99% of the time so I do not need to change lenses.
    Thanx in advance.

    How can I bulk rename music files in reverse order from artist - song name to songname - artist.
    I actually dont need to rename the actual files.
    Its just i have a huge txt list of 100,000 music names that are listed as so.
    I wonder if we haven't misunderstood what you were asking for. Could it be that you have not a huge file, but just a huge list of names in many small files. If that's the case, you should rather use the following script instead of the previous one.
    Since this script does not rename the files, make a backup of your files before running it.
    set theFolder to choose folder -- the folder containing your text files
    tell application "Finder"
        set theNames to name of files of theFolder whose name extension is "txt"
    end tell
    set theTextFiles to {}
    set theFolderPath to POSIX path of theFolder
    repeat with thisName in theNames
        copy theFolderPath & thisName to the end of theTextFiles
    end repeat
    repeat with thisFile in theTextFiles
        set F1 to open for access thisFile
        set theText to read F1
        close access F1
        set theParagraphs to paragraphs of theText
        set bigList to (a reference to theParagraphs)
        set theNewParagraphs to {}
        set bigNewList to (a reference to theNewParagraphs)
        repeat with X in bigList
            set P to offset of " - " in X
            if P = 0 then
                set Y to X
            else
                set Y to text (P + 3) through -1 of X & " - " & text 1 through (P - 1) of X
            end if
            copy Y & return to the end of bigNewList
        end repeat
        set theNewText to text 1 through -2 of (bigNewList as text)
        set F2 to open for access thisFile with write permission
        set eof F2 to 0
        write theNewText to F2
        close access F2
    end repeat
    display dialog "Done!" buttons {"OK"} default button 1 with icon 1
    Message was edited by: Pierre L.

  • Can I rename a PDF file based on the metadata? (prefer a bulk rename)

    I had to do a file recovery on a hard drive with a program called TestDisk. It recovered 30GB+ of files but it recovered data by ignoring the partition/partition table. Because of this it uses its own naming structure during the recovery. The names of the files are f_______.XXX. I noticed that when I hover over the PDF files it actually displayed the original file name. I looked in the file proerties and noticed the PDF tab which contained this. Does anyone know if I can rename the file(s) using this data. The summary tab on the file properties is blank but the file name is located under this PDF tab (I didn't even know this existed). I don't know what I'm going to do with the rest of the files but being able to bulk rename 8GB of PDFs would be great!  :-)
    Thanks,
    Sundiata

    ok I'm not into programming and not familiar with Javascript. Does anyone know any websites to maybe assist me with making this batch file or at least provide enough basic Javascript info to get me started and I may be able to figure this out. Or is this Javascript something that is auto. something created during the renaming process creation?
    Thank

  • Bulk Renaming Problem in Adobe Bridge

    Hi
    I have an inconvenient problem in bulk renaming files in Adobe Bridge CS3.
    An original file name for example looks like: DSC_5521
    I wish to keep the "5521" part in my bulk renaming process so it may look for example like "Landscape5521" but loose the "DSC_" bit of the original file name.
    Bulk renaming appears to let me keep all the original file name or none of it. In which case I have to manually knock out the "DSC_" part of each renamed file.
    Any suggestions or ideas would be gratefully received!
    Many thanks
    Carl

    Carl,
    While Bridge's renaming abilities is adequate in some post-production digital workflows it fails in the industrial grade categories.
    For a simple no fuss approach I have for many years now used free-ware software.  If you look around on the Internet you should be able to find a renaming program that will suit your needs.  Most of them are small and unobtrusive in their use and computer requirements.  Myself I am quite satisfied with Smart Rename 1.0 by ZByteSoft.Com.
    I regularly rename, and apply or change date stamps, for up to 4,000 files at a time.  I am also able to apply system attributes to the selected files as I desire.
    While such programs may not give you exactly what you wish they should come close.  It may require that you slightly change your digital workflow and in that regard you may find that one little application that suits your needs to a tee.
    Wayne Webb

  • HowTo: Use Thunar's Bulk Rename with Dolphin

    I thought I would post a quick note here on how to use Thunar's Bulk Rename tool with KDE's Dolphin file browser.
    Background
    I am aware of KRename, but frankly, I find it a bit too complex. I prefer Bulk Rename because it is simpler, and because I often use regular expressions to rename files, which I find a bit quicker to accomplish with Bulk Rename than with KRename.
    Prerequisites
    Before getting started, one should make sure that dolphin and thunar are installed. This can simply be checked with the following pacman command:
    pacman -Qs 'thunar|dolphin'
    The output on should be similar to this:
    local/kdebase-dolphin 4.14.3-1 (kde kdebase)
    File Manager
    local/kdesdk-dolphin-plugins 4.14.3-1 (kde kdesdk)
    Extra Dolphin plugins
    local/thunar 1.6.3-2 (xfce4)
    Modern file manager for Xfce
    local/thunar-volman 0.8.0-2 (xfce4)
    Automatic management of removeable devices in Thunar
    KDE Service Menu Entries
    A kde service menu entry is, in most simple terms and for the purpose of this 'HowTo', a file that defines an option that can be added to e.g. dolphin's right-click menu. These services are by default in:
    /usr/share/kde4/services/ServiceMenus/
    ... but one can also add a service to the local configuration, which I recommend, unless you want the Bulk Rename feature to appear system wide.
    To add a service entry locally, open a Terminal and create the 'ServiceMenus' directory if it doesn't exist yet:
    cd ~/.kde4/share/kde4/services/
    mkdir ServiceMenus
    cd ServiceMenus
    Finally create the service entry that will make 'Bulk Rename' appear as a right-click option in dolphin. To do so, use your favorite text editor and create a file called 'bulk-rename.desktop' with the following content:
    [Desktop Entry]
    Type=Service
    ServiceTypes=KonqPopupMenu/Plugin
    MimeType=all/all;
    Actions=BulkRename;
    X-KDE-StartupNotify=false
    X-KDE-Priority=TopLevel
    [Desktop Action BulkRename]
    Name=Bulk Rename
    Exec=thunar -B %U
    Save this file as 'bulk-rename.desktop' in the previously created service menus directory (~/.kde4/share/kde4/services/ServiceMenus), and you're done!
    Be sure to restart dolphin if it was already running. Select a couple of files (it works with folders, too), right-click, and select 'Bulk Rename'. Thunar's Bulk Rename will pop up with the selected files, ready for your renaming actions.
    Cheers,
    DrTebi

    Thanks for wriitng that. I suggest adding it to the wiki. That way the community can help maintain it.

  • Editing/renaming mp3 files and folders on my Zen Micro with Win Media Player

    Can anyone tell me how I edit and rename the files all ready on my Zen Micro? For instance: I have 3 folders named "2Pac", "2 Pac" and "Tupac" and would like to put them all together under one name.
    I also want to get rid of the album subfolders. I have changed the files in the Library, renaming files and folders, deleting all album names, but the changes don't seem to be made on the player.
    I can't seem to change them directly changing folders and renaming files on the right side of the Media Player Screen either. Only option there is to delete files.
    Bepppe

    Thanks for the tip Baldbear, that should work.
    So I guess it is no way of editing the files when they are all ready on the player.
    Is it then impossible to get rid of the album subfolders? (without deleting all files an transfer them back on again. I would have done it if it weren't for the fact that the sync stops for no reason every 5th to 30th file I transfer.

  • HT3775 I have a bunch of .MOD files I cannot play from our Canon video cam. I tried renaming the files as MPEG or MOV, I get the message "The document "001.MPEG" could not be opened. A required codec isn't available." Any advice on getting these to play?

    I have a slew of .MOD files I cannot play from our Canon video cam. I tried renaming the files as MPEG or MOV, I get the message "The document “001.MPEG” could not be opened. A required codec isn't available." Any advice on getting these to play? Thanks!

    Try installing Perian or VLC. Some AVIs require a codec which simply isn't available for Mac OS X.
    (85018)

  • I want to remove what Skype identifies as "Tell you friends what you are feeling . . . ."  One person on the Skype community said I could rename a file, but he thought I was on a PC.  I am using OS10.7.4, and Skype is functioning OK.

    One person on the Skype community suggested: 
    Re: disable mood history
    17-09-2011   02:04                 
    Actually it is possible to delete your own mood message updates but it requires an unsupported ”fix”.
    You need to delete the keyval.db database file. In order to be on the safe side, it’s best just to rename this file, so you can always get it back if something went wrong.
    You can find this file by entering %appdata%\skype in the Start Run/Search box. This will open the Skype User folder. Locate there the folder with your Skype Account name and the keyval.db file will be there. You must stop Skype from running on your computer before deleting/renaming this file. Next time you start Skype a new version of this file will be recreated and all mood message updates will be removed from the home page.
    However, this guy didn't know I was on a Mac.  I phoned Apple to see if they could show me how to get into the Skype file apparently on my computer, and they couldn't find it. 
    Anyone out there have any ideas?  It doesn't seem as if I have any Skype files on my computer.  If I need to make file changes via "the terminal," can someone tell me how to do this?
    Gretchen

    Hello,
    I had the same problem with finding this file.
    There's no such file in Mac OS X version of Skype. But there's a directory for your Skype user account in /Users/%current_user_name%/Library/Application Support/Skype/
    try:
    quitting Skype
    renaming old folder
    signing into the Skype

  • How do i rename multiple files at the same time on a MAC?

    I have been a mac user since 4 years now yet i cannot figure out how to rename multiple files in mac. In Pc i used to slect all and rename one e:g "ab.jpg" and the restwould be "ab (1).jpg" automatically. but in the mac its way too hard to do this on the automator. ..
    please advise asap!
    ~haniah

    You can do it with Automator.
    http://www.automator.us/examples-01.html
    Or with a utilities like these:
    http://www.publicspace.net/ABetterFinderRename/
    http://renamer4mac.com/
    You can also do it using the Terminal command line.
    Matt

  • How do I import old FCP projects that have mysteriously changed to Linux Executable files?  Is it as simple as renaming the files with the.fcp extension?

    I had some FCP projects on an old G3 tower that I finally want to finish. I was able to grab everything, media, etc. to my macbook pro but all of the Final Cut Pro actual movies/projects have turned into "linux executable files" that FCP X won't import.
    I tried googling this issue but didn't really see any good answers. Would it be as simple as renaming the files with the .fcp extension?  I can't recall if my old version (really old) of FCP saves projects as .mov or .fcp files, but I'm assuming I'm not the only person this has happened to.
    Thanks for your help!

    I had some FCP projects on an old G3 tower that I finally want to finish.
    What version of FCP was this? The project files can probably no longer be opened in the newer version of the OS. You could try adding the .fcp suffix, but I don't think it will help for this. Projects files are .fcp.
    Regardless of the version, no legacy FCP projects will import into FCPX.
    Media is a different matter. These are probably QuickTime .mov files. If these are appearing as Unix ececutables, they're probably not recoverable either.

  • Can you somehow use Lightroom to rename RAW files?

    Okay let's say in one folder on my hard drive I have three RAW files: _DSC0001.NEF and _DSC0002.NEF and _DSC0003.NEF. Now let's say I have reformatted my memory card so my camera will once again start labeling new images with _DSC0001.NEF.
    So let's say now I go out and shoot three more RAW files: _DSC0001.NEF and _DSC0002.NEF and _DSC0003.NEF.
    If I try to transfer these brand new images into my original folder there will be some duplicate naming which you can't do.
    What I have been doing is going into the new folder that holds the new three images and renaming them: so I change _DSC0001.NEF to _DSC0004.NEF and I change _DSC0002.NEF to _DSC0005.NEF and I change _DSC0003.NEF to _DSC_0006.NEF.
    Instead of me having to manually rename each photo I was wondering if I could import these new photos into Lightroom and then tell Lightroom to export these RAW images but starting at the sequence _DSC0004.NEF...and so forth.
    I mean I can't have a folder that has this: _DSC0001.NEF and then _DSC0001.NEF.
    I hope I have made myself clear.
    Or am I doing this all wrong?
    And I would want Lightroom to export the original, unedited RAW file. It's just that I would be using Lightroom to rename them to keep proper sequencing.

    This is the Help page you should read: http://help.adobe.com/en_US/Lightroom/3.0/Using/WSCF140965-2440-4b65-9F88-AA0283034B11.htm l
    It can take a little getting used to but once you have you will find it quite easy.
    By the way I rename my files with the date first (GW20110514-12345.xxx) which may be useful to you.

  • Can't rename a file using File.renameTo(...)

    Hi,
    I have a servlet, RenameFile, that receives audio file via HTTP Post and writes it to /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav. Then it creates directories under /alert_messages directory based on the timing parameters that it get. Finally, it renames /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav to /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV. RenameFile runs fine when it runs by itself (ONLY one Tomcat, jakarta-tomcat-4.1.30, is running). However, RenameFile fails to rename the /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav to /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV when it runs in a Linux box that jboss-3.2.1_tomcat-4.1.24 is also running. In this box, TWO versions of Tomcat are running at the same time. I set the /alert_messages directory with �chmod �R 777� and run jakarta-tomcat-4.1.30 as tomcat user. RenameFile fails the rename operation. But, it creates the /alert_messages/2005/06/22/22/00/ directories.
    It seem like RenameFile can create directory but can�t create file in the /alert_messages directory when both version of tomcats are running at the same time.
    Can it be due to both the jakarta-tomcat-4.1.30 and the jboss-3.2.1_tomcat-4.1.24 versions are running at the same time in one Linux box?
    Can this be Jboss prevented the operation?
    I did not receive any io exception!!!
    Any help in this issue is greatly appreciated.
    Debug listing from the RenameFile;
    - originalFilename: recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    - file.toString(): /tmp/recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    - file.getName(): recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    - file.length(): 122986
    - file /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV
    - file NOT renamed /alert_messages/2005/06/22/22/00/79_0_200506222200_001.WAV
    File Listing in the /tmp directory create by RenameFile;
    -rw-r--r-- 1 tomcat tomcat 122986 Jun 22 07:33 recording.0002002B-0C0022BB-0001.1.20050622.073208.wav
    Directoy Listing in the / directory with �ls �la�;
    drwxrwxrwx 3 tomcat tomcat 4096 Jun 22 07:28 alert_messages
    Directory created by the RenameFile with �ls -la /alert_messages/2005/06/22/22/00�;
    drwxr-xr-x 2 tomcat tomcat 4096 Jun 22 07:33 .
    drwxr-xr-x 3 tomcat tomcat 4096 Jun 22 07:33 ..
    Out put from catalina.out;
    !!!!! Can Read the old File !!!!!!!!!!!!!!!!!!!!
    !!!!! Can Write the old File !!!!!!!!!!!!!!!!!!!!
    !!!!! Can Not Read the new File !!!!!!!!!!!!!!!!!!!!
    !!!!! Can Not Write the new File !!!!!!!!!!!!!!!!!!!!
    !!!!! renameTo return false !!!!!!!!!!!!!!!!!!!!
    Code That rename a file:
      public synchronized String renameAlertMessageFile(String oldFileName,
                                String newFileName)
                throws SecurityException, NullPointerException
        File oldFile = null;
        File newFile = null;
        String result = null;
        StringBuffer myNewFileName = null;
        boolean renamed = false;
        try {
          int indexStringValue;
          int newFileLength;
          int indexOfPeriod;
          int indexOfLastUnderScore;
          int lengthOfExtension;
          boolean  Contin = true;
          String sNumber = null;
          String indexString = null;
          myNewFileName = new StringBuffer(newFileName);
          oldFile = new File(oldFileName);
          newFile = new File(myNewFileName.toString());
          if (oldFile.canRead() == false) {
            System.out.println(" !!!!!  Can Not Read the old File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Read the old File !!!!!!!!!!!!!!!!!!!!");
          if (oldFile.canWrite() == false) {
            System.out.println(" !!!!!  Can Not Write the old File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Write the old File !!!!!!!!!!!!!!!!!!!!");
          if (newFile.canRead() == false) {
            System.out.println(" !!!!!  Can Not Read the new File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Read the new File !!!!!!!!!!!!!!!!!!!!");
          if (newFile.canWrite() == false) {
            System.out.println(" !!!!!  Can Not Write the new File !!!!!!!!!!!!!!!!!!!!");
          } else {
            System.out.println(" !!!!!  Can Write the new File !!!!!!!!!!!!!!!!!!!!");
          renamed = oldFile.renameTo(newFile);
          if (renamed == false) {
            System.out.println(" !!!!!  renameTo return false !!!!!!!!!!!!!!!!!!!!");
        } catch (NullPointerException ex) {
          // Throw the same exception so that the caller may catch the
          //   exception and log the error
          System.out.println("NullPointerException For The New Dest File Name");
          ex.printStackTrace();
          throw ex;
        } catch (SecurityException seEx) {
          System.out.println("SecurityException For The New Dest File Name");
          seEx.printStackTrace();
          // Throw the same exception so that the caller may catch the
          //   exception and log the error
          throw seEx;
        } finally {
          if (renamed == true)
            return myNewFileName.toString();
          else
            return null;
      } // End renameAlertMessageFile

    Hi,
    Thank you for replying to my message. The servlet has been running for me for the last 12 months. However, it was running by itself without the Jboss-tomcat running on the same box. Can this be the catalina.policy file in the jboss-tomcat version restricted the rename operation. We are not allowed to write file under the umbrella of J2EE. But the servlet did not run within Jboss-tomcat. This really gets me thinking that something is not working correctly. Perhaps tomcat did not has the permission to write on the /alert_messages directory, again it did created the subdirectories under the /alert_messages.
    Any idea of what is going on?

  • Kde 4.6.1, 4.6.2 widget-folderview, rename a file gives an error.

    I already submitted the issue on bugs.kde.org:
    https://bugs.kde.org/show_bug.cgi?id=270414
    Version:           unspecified (using KDE 4.6.2)
    OS:                Linux
    When i rename a file using folderview, the file is renamed, but an error is
    triggered.
    Reproducible: Always
    Steps to Reproduce:
    -place a folderview widget on the desktop
    -rename a file from 'oldname' to 'newname'
    Actual Results: 
    - see the error message: "The file or folder oldname does not exist."
    - see that the file has been renamed to 'newname'
    Expected Results: 
    Don't throw an unuseful error message, it is clear that 'oldname' does not
    exists anymore.
    ...but it seems that at least someone can't reproduce it on kubuntu packages
    ------- Comment #1 From Nikos Papas 2011-04-09 18:22:21 -------
    I cannot reproduce the error. Using KDE 4.6.2, 64bit, Kubuntu packages.
    Can somebody try to reproduce under arch please?
    Thank you very much!
    Last edited by kokoko3k (2011-04-11 10:59:19)

    I can reproduce this error.
    I tried renaming a file in the folder view, and renaming a file in a sub-folder off of the folder view.
    In all cases, I got the "does not exist" error, and the re-named file.
    Arch: 64-bit
    KDE: 4.6.2

  • I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview

    I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview shows the contents, I can't open the document (Powerpoint) and I can't move the document. I tried "Copy" and paste but it doesn't work. I tried "Share" with Airdrop and iChat, but the file is inaccessible. When i try to rename the file, it says the filename is too long.
    When I try to open it, it says the alias is not good, and asks if I want to fix the alias. I'm afraid to do that and lose all access to this document.
    Right now, it feels like a ghost document - it is on the computer intact, but it is in an undisclosed location and inaccessible.
    Please help!!

    I was able to resolve this by repairing permissions, even though no permissions error was listed specifically for that file.
    I could also have recovered it through Time Machine, but I'm interested in knowing how not to have this happen again!
    I was afraid of rebooting and possibly losing track even of the ghost.
    I did not try EasyFind - I'll keep that in mind next time.
    Thanks for all the comments.

Maybe you are looking for

  • How can I cleanly reinstall all Safari?

    My wife is having lots of issues with Safari on her iMac. Tabs don't open when told in preferences to do so, they only open a new window and display nothing but a blank page (I've even tried the command line tricks to fix this, it works once and then

  • How to Create material master workflow

    Hi All, Can anybody tell me how to create material master workflow? i need to customize the workitem  for creating data in different views in MM01 transaction with restriction to particular user. Regards, Priti

  • Can't install Windows 7 (NTFS partition)

    New MacBook Pro (bought in August with version 10.5.8), just updated to Snow Leopard. Boot Camp is v. 3. Created a 100GB partition for Windows using Bootcamp, clicked install and inserted the Windows 7 64-bit disk. Did this twice - same error "Window

  • af:query component - need help

    hi I am implemeting a search page wiht <af:query> component with view criteria. (to be specific drag and drop viewCriteria as query panel with table) what i observe is that when I do "Add fields" at runtime the compnent moves up and up till it hides

  • Is SWF File Format still closed?

    The swfutils.jar is now open source under MPL. We can hack swf files with swfutils.jar But "SWF and FLV File Format Specification" seems still closed. Does Adobe intend to open the SWF file format?