Cannot move files to different folders

A few days ago, I started being unable to move files from one folder to another in Finder or on my Desktop, using a drag and drop motion. I can move the files if I copy and paste them from one folder to the next, but that is incredibly laborious. I have not changed any of my user settings lately, so I have no idea why this is happening all of a sudden.
I am currently using OS x 10.9.4. Any ideas or thoughts as to why this is happening would be greatly appreciated.

I recently ran into some weird Finder behavior while moving files from one folder to another, and suspecting problems with caches, I booted into Safe Mode (Shift key down at the chime from a cold boot). That did some cache cleaning, and after a reboot, the file moving problem was gone. Give that a try.

Similar Messages

  • What is the best way to move files to different folders in a plug-in?

    I am writing a plug-in that needs to move files on the hard drive.  I am using LrFileUtils.move(from, to) and everything is fine except that the catalog is not updated when the file is moved.  After the plug-in runs I can use Library > Synchronize Folder to get the catalog back in sync with the new locations of the photos on the drive, but this manual step is less than ideal. 
    I am unable to find a way to move the files within the plug in that also updates the catalog (like dragging photos to a new location within the LR Navigator pane).  Lacking an API for this, I looked for a way to programmatic execute the Synchronize Folder menu item, but was not able to find this either..
    Can anyone recommend a better way to move photos to different folders within a plug-in that also updates the catalog?

    Hi Andy,
    There are 3 main file formats that you can consider writing your data out to in LabVIEW:
    ASCII
    Binary
    Datalog
    ASCII
    ASCII files are useful because every operating system and almost every application can read/write ASCII format files. Use ASCII files when:
    Other users or applications will need to access the data file.
    You will not need to perform random access file I/O
    File I/O speed is not crucial
    Disk space is not crucial
    Examples within LabVIEW Example Finder: Fundamentals >> File Input and Output >> Write to Text File.vi and Read from Text File.vi
    Binary
    Binary byte stream files are more specific to data storage and retrieval. Use b
    inary files when:
    File I/O will remain in LabVIEW only -- no other applications will be needing to write/read that file. There is no standard formatting for binary files and thus other applications or operating systems may be unable to read the file.
    Files are smaller than ASCII files
    Easier and faster random access to data
    Examples within LabVIEW Example Finder: Fundamentals >> File Input and Output >> Write Binary File.vi and Read Binary File.vi
    Datalog
    When to use datalog:
    If you need to record data with a mixture of types, it can be cumbersome to convert everything to ASCII or to keep track of the binary formatting.
    Datalog format is binary and internal to LabVIEW, so again only use this format if no other applications or operating systems will be needing to perform file I/O on the file.
    Examples within LabVIEW Example Finder: Fundamentals >> File Input and Output >> Write Datalog File
    Example.vi and Read Datalog File Example.vi
    Good luck!
    Kileen C.
    Applications Engineer
    National Instruments

  • Move files to different folders on a external harddrive

    Hi
    On my computer I have difference files in a folder, that I want to move to different correct folders on a external harddrive.
    In the folder I can for instance have the following files:
    PBS march 2011
    Pay march 2011
    On a external drive, I have folders, that I want the documents to be moved to.
    For instance PBS march 2011 should be move to a folder called PBS, where again there is a folder called 2011. In al folders there is folders of each year, so the applescript should be appel to find the PBS folder, and then put it in the correct year folder.
    Now there is hundreds of folders, so it need to be automatic.
    In a tree structure I would be like this:
    External drive
    Kristians documents
    -folder importen letters
    --PBS
    ---2011
    Can anyone help with a script on this?

    Hi,
    These scripts work, if the filename contains always three
    words separated by a space, otherwise the file will not be moved.
    The script will overwrite files that already exists in the destination folder.
    Here's the script that uses a shell
    set theFolder to "" -- drag/drop your folder between quotes
    set destination to "" -- drag/drop the folder "folder importen letters" between quotes
    do shell script "dest=" & (quoted form of destination) & "
    /usr/bin/find " & (quoted form of theFolder) & " -type f -maxdepth 1 \! -name '.*' -print0 | while read -d $'\0' f; do
    name=${f##*/}; folderName=${name%% *}; year=${name##* };
    if [[ "$year" = . ]]; then year=${year%%.*};fi
    if [ -d "$dest/$folderName/$year" ];then
    /bin/mv -f "$f" "$dest/$folderName/$year/$name"
    fi
    done"
    or this script if you prefer the Finder
    set theFolder to (POSIX file "") as string -- drag/drop your folder between quotes
    set destination to (POSIX file "") as alias -- drag/drop the folder "folder importen letters" between quotes
    tell application "Finder"
    repeat with tFile in (get files in folder theFolder)
    set {folderName, t_year} to my getTheseNames(name of tFile)
    if t_year is not "" then try
    move tFile to folder t_year of folder folderName of destination with replacing
    delete tFile -- because the command move, doesn't move on other volume, it duplicate
    end try
    end repeat
    end tell
    on getTheseNames(tname)
    set oldTID to text item delimiters
    set text item delimiters to " "
    try
    tell tname to set {t_base, t_end} to {text item 1, text item 3}
    set text item delimiters to "."
    set t_end to text item 1 of t_end -- text before the period = the year
    on error
    return {"", ""}
    end try
    set text item delimiters to oldTID
    return {t_base, t_end}
    end getTheseNames

  • Cannot move files into folders on desktop

    Hi, I cannot move files into folders on desktop.  They won't go in when I grab them and drag them to a folder.

    Take these steps if the cursor changes from an arrow to a white "prohibited" symbol when you try to move an icon on the Desktop.
    Sometimes the problem may be solved just by logging out or restarting the computer. Try that first, if you haven't already done it. Otherwise, continue.
    Select the icon of your home folder (a house) in the sidebar of a Finder window and open it. The Desktop folder is one of the subfolders. Select it and open the Info window. In the General section of the window, the Kind will be either Folder  or something else, such as Anything.
    If the Kind is Folder, uncheck the box marked Locked. Close the Info window and test.
    If the Kind is not Folder, make sure the Locked box is not checked and that you have Read & Write privileges in the  Sharing & Permissions section. Then close the Info window and do as follows.
    Back up all data before continuing.
    Triple-click anywhere in the line below on this page to select it:
    xattr -d com.apple.FinderInfo Desktop
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V. You should get a new line ending in a dollar sign ($). Quit Terminal.
    Relaunch the Finder.
    If the problem is now resolved, and if you use iPhoto, continue.
    Quit iPhoto if it's running. Launch it while holding down the option key. It will prompt you to select a library. Choose the one you want to use (not the Desktop folder.)

  • Cannot move files or folders on desktop   OSX 10.7.5  MacBook Air

    Cannot move files or folders on the desktop. This occurred suddenly - don't know what happened or how to undo this. Nothing on the desktop is moveable.
    MacBook Air   OSX   10.7.5

    Take these steps if the cursor changes from an arrow to a white "prohibited" symbol when you try to move an icon on the Desktop.
    Sometimes the problem may be solved just by logging out or restarting the computer. Try that first, if you haven't already done it. Otherwise, continue.
    Select the icon of your home folder (a house) in the sidebar of a Finder window and open it. The Desktop folder is one of the subfolders. Select it and open the Info window. In the General section of the window, the Kind will be either Folder  or something else, such as Anything.
    If the Kind is Folder, uncheck the box marked Locked. Close the Info window and test.
    If the Kind is not Folder, make sure the Locked box is not checked and that you have Read & Write privileges in the  Sharing & Permissions section. Then close the Info window and do as follows.
    Back up all data before continuing.
    Triple-click anywhere in the line below on this page to select it:
    xattr -d com.apple.FinderInfo Desktop
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V. You should get a new line ending in a dollar sign ($). Quit Terminal.
    Relaunch the Finder.
    If the problem is now resolved, and if you use iPhoto, continue.
    Quit iPhoto if it's running. Launch it while holding down the option key. It will prompt you to select a library. Choose the one you want to use (not the Desktop folder.)

  • Locked Windows/Folder, Cannot Move Files On External Hard Drive

    I'm running Tiger 10.4.11 on an iMac and am the only user, and therefore, administrator. I'm encountering a weird, albeit small, problem on one of my external hard drives (Seagate 320 gigs): I have boatloads of video files stored on the drive, but suddenly cannot move files into folders within the drive (I see a white "do not enter" kind of a sign over whatever icon I try to move). I can't move these files off the drive and onto my iMac's internal hard drive, either. I can only delete them. I can add new files to the drive, but then cannot move those either (can only delete them).
    The folders and drive are not locked, I have read & write access, etc., so there doesn't seem to be any reason for me to be barred from moving items. Any clues? Many thanks.

    Thank you for your reply and kind welcome.
    That's a great tip, but that box was already checked, so I'm afraid that wasn't a solution. The problem ended up "solving itself" after I left my machine off for the day while I went to work. I may never know why that error occurred, but I certainly don't care, as long as it doesn't happen again. Take care.

  • Applescript moving different files to different folders

    I have 377 files I need to move into 377 different folders. The files have a name like "JustAKid_Basketball-10up 2.pdf" where only the number on the end changes. The folders are named for cities with a number on the front. i.e. "374.SHALLOTTE" I'm trying to build a script that can read the file name and match number to number and then move the file into the matching folder. "JustAKid_Basketball-10up 2.pdf" would go into "2.NASHVILLE." Does that make sense? Any help would be greatly appreciated.

    IF window 1 contained just exactly 377 folders and 377 files, AND IF all your files really had the same name (except for the number at the end), for example "JustAKid_Basketball-10up 1.pdf", "JustAKid_Basketball-10up 2.pdf", …, "JustAKid_Basketball-10up 376.pdf", "JustAKid_Basketball-10up 377.pdf", THEN you could try the following script:
    tell application "Finder"
          set k to 377
          repeat until k = 0
                move file k of window 1 to folder k of window 1
                set k to k - 1
          end repeat
    end tell

  • [SOLVED] Cannot move file to trash

    Hi
    When i try to delete files they are deleted but they do not appear in trash bin. So when i click on "Move to trash" the pop up window appear and say:
    Cannot move file to trash, do you want to delete immediately?
    What am i doing wrong?
    Last edited by Shark (2011-03-09 08:23:27)

    @stlarxh
    I have already got installed gvfs. Interesting thing is that the Trash folder under ~/.local/share/Trash
    have the following permission:
    drwx------ 4 root root 4096 Feb 27 21:57 Trash
    On Ubuntu it has this permissions:
    drwx------ 5 saso 1000 4096 Sep 20 10:19 Trash
    If i change permission from root to my username i can't delete files at all. Has this got something with group 1000? How can i add group 1000?
    @emk
    my fstab:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    devpts /dev/pts devpts defaults 0 0
    shm /dev/shm tmpfs nodev,nosuid 0 0
    /dev/sda3 / ext4 defaults 0 1
    /dev/sda1 /media/Razno ext4 users,auto,errors=remount-ro 0 1
    /dev/sda5 swap swap defaults 0 0
    /dev/sda3 is ArchLinux, /dev/sda1 is a custom partition.

  • Streaming files with different folders

    Hi
    i am new to FMS4 and i am having a problem playing some files with different folders.
    i have different folders in C:\media3\feeds
    in that directory i have folder "1", "2" and "3"
    other words C:\media3\feeds\1
    C:\media3\feeds\2
    C:\media3\feeds\3
    in config folder i changed fms.ini
    VOD_DIR = C:\media3\feeds\
    and
    VOD_COMMON_DIR = C:\media3\feeds\
    i only got the f4v files to work in C:\media3\feeds\ which link is rtmp://localhost/vod/mp4:testfile.f4v
    so i tired to have some folders in C:\media3\feeds\ like mention above
    i tried to put <Streams>/;<C:\media3\feeds\1</Streams> in Applications.xml file in the C:\Program Files\Adobe\Flash Media Server 4\applications\vod
    and used rtmp://localhost/vod/1/mp4:testfile.f4v
    here is piece of the App file
    <Application>
    <StreamManager>
    <VirtualDirectory>
          <!-- Specifies application specific virtual directory mapping for recorded streams.   -->
    <Streams>/;${VOD_COMMON_DIR}</Streams>
    <Streams>/;${VOD_DIR}</Streams>
    <Streams>/;<C:\media3\feeds\1</Streams>
    <Streams>/;<C:\media3\feeds\2</Streams>
    </VirtualDirectory>
    nothing worked
    can some one help me with this??

    If you are using
    VOD_DIR = C:\media3\feeds\ or VOD_COMMON_DIR = C:\media3\feeds\
    and having files in folder "1" which is under "C:\media3\feeds\"
    then you URI should be rtmp://localhost/vod/mp4:1/testfile.f4v (where testfile.f4v is present under C:\media3\feeds\1)
    If you are using
    <Streams>/;C:\media3\feeds\1</Streams>
    <Streams>/;C:\media3\feeds\2</Streams>
    Then your URI should be rtmp://localhost/vod/mp4:testfile.f4v  (where testfile.f4v is present under C:\media3\feeds\1 or C:\media3\feeds\2)
    Also please note in your configuration which you have specified
    <Streams>/;<C:\media3\feeds\1</Streams><Streams>/;<C:\media3\feeds\2</Streams>
     please remove "<" in "<C:\media3\feeds\1" and "<C:\media3\feeds\2"

  • Cannot Move Files/Folders on Desktop

    One of the Mac Pros in my computer lab suddenly developed a strange behavior: I can't move any of the file or folder icons on the desktop, nor can I drag files/folders between windows or columns. They don't snap back to their original position; they won't move at all.
    I can select the icons on the desktop and in windows, but cannot move them. This behavior is the same in my Admin account and a restricted student account.
    I've repaired permissions with Disk Utility, and run Onyx (Optimize The System; Execute Maintenance Scripts; Clear: Application, Internet, Font and System Cache; Clean Recent and Temporary Items). I've relaunched the Finder several times, and zapped the PRAM. Restarting doesn't help.
    Anyone seen this before?
    Thanks,
    Robert

    Robert B wrote:
    I'm unable to start from the Install disk; I get the "Black Veil of Death" every time (You Need To Restart Your Machine...).
    Oh, well this is very much more serious than a permissions problem. I would tell you to Repair your disk, but
    I can Safe Boot and choose either account. Except for the non-moving icons, the machine seems to run fine.
    A Safe Boot automatically runs Repair Disk as many times as needed to fix things. Trying to start from the Install disc gives you a kernel panic, and yet you are able to Safe Boot? I don't know what could cause this.
    After a Safe Boot, and in my Admin account, can I affect the changes you suggest when starting from the Install disk?
    Well, not by the method I initially suggested, but you can using Terminal. But I see no point in doing that—you really need to fix the kernel panics.
    However, as a temporary thing, try this.
    Open the Terminal (from /Applications/Utilities) and copy and paste the following into the Terminal window, one line at a time, with a return after each line:
    chmod -R -N .
    chmod +a "everyone deny delete" . Desktop Documents Downloads Library Movies Music Pictures Public Sites
    chmod +a "`id -un` allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr,writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" Public/Drop Box
    That will fix things for the account you have logged in with. If you need to fix the other one, you must repeat while logged in to that account

  • I can't move music files to different folders in my itunes library

    First, I have not created files in my itunes library for a while, and I could swear it was a lot easier years ago! ALL that I want to do is add the new music I've purchased or recently added to a folder that already exists in the playlist.
    1) All my recently added songs have been purchased through my iphone, I'd like to move them to a folder.
    2) When I connect my phone to my computer, I see the tab to click on my phone. I do, and it opens the content of Music in my iphone.
    3) In this content, there are folders to the left listed, beginning with Music, Movies, Purchased, Recently Added, Recently Played, "My Name" Favorites, another specific folder I labeled to seperate music, and then another Purchased folder.
    4) I WANT TO MOVE or copy my newly purchased music file to these folders so when I play them on my phone, I can SIMPLY choose the file that is asscoiated with my Favorites or other choice.
    Why Is This So Difficult to do! Or is it that easy and I'm overlooking the past hour I've spent trying!
    Second part of my aggravation, why can i NOT sort the files in a music folder by song name anymore?! We used to be able to click at the top of the listing, Name, Aritist, Albulm etc. to sort them alphabetically and make a search easier depending on , but now I can no longer do this.

    This happened to me too but I only tried one song and then gave up. I thought it was a fairly popular song.

  • Saving jpeg and html file into different folders

    Hi, all.
    I developed a VI that generates, on a timely basis, reports (HTML format) that contain some text, numerical values and graph images (jpeg). The problem is that when it saves a HTML file to a folder, JPEG files are also saved into the same folder.
    Is there any way I can save these html and jpeg into different folders?
    Or is it even possible to generate html report with some graph images without having to have save jpeg files? (this would be even better).
    I included a screen shot of the VI.
    Thanks in advance for your help.
    Attachments:
    screen shot.doc ‏184 KB

    There is currently no way, with the Report Generation VIs, to save the image files for an HTML report to a separate folder.  If you think this would be a helpful feature, please submit your request to the Product Suggestion Center, and we will look into possibly including this feature in a future release.  For now, the only workaround I can think of would be for you to use the File I/O VIs to manually create another folder and move the image files to it, then use the string manipulation functions to edit the contents of the HTML file to point all image file references to the new location.
    As for not generating images, I don't know of an easy way to have an HTML page with images where there are not corresponding image files.
    Good luck,
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • Not able to move files to new folders in Bridge CS6

    Hello all.  I am trying to move files around through bridge CS6 but I keep getting :
    " The operation cannot be completed because you do not have sufficient permissions".  How do I fix this annoyance? This is really screwing with my work flow and forcing me not to bother using Bridge.
    Thanks in advance.

    This is really an OS problem as it sets permission levels for operations.   What OS?
    If using Win OS and an external drive, you can start Bridge by right clicking and choosing "run as administrator".

  • Alter Database Remove File : Partition Files on different folders

    I need to remove partition files, once I switch the partition with staging table and empty/truncate the partition. 
    When I was running the code on my local machine I was passing variable @partition_file_name to following statement:
    Declare @partition_file_name varchar(128)='table_abc_201202',
    @database_name varchar(128)='test'
    Alter Database @database_name Remove File  @partition_file_name
    Note @partition_file_name is the logical name of the partition file.
    I found out partitions are saved in different folders in my Dev env...They are stored in 12 different folders which are named like 1-12.
    E.g:
    C:\DATA\2\table_abc_201202.ndf
    C:\DATA\3\table_abc_201203.ndf
    C:\DATA\4\table_abc_201204.ndf
    C:\DATA\5\table_abc_201205.ndf
    C:\DATA\2\table_abc_201302.ndf
    C:\DATA\3\table_abc_201303.ndf
    C:\DATA\4\table_abc_201304.ndf
    C:\DATA\5\table_abc_201305.ndf
    I am wondering , is SQL server with Alter statement is capable of getting the right path for each partition files and remove them accordingly? Or do I need to pass the physical path to the alter statement to get it removed. Though I tried doing that and
    got the error.
    ZK

    I am wondering , is SQL server with Alter statement is capable of getting the right path for each partition files and remove them accordingly? Or do I need to pass the physical path to the alter statement to get it removed. Though I tried doing that and
    got the error.
    Yes, SQL Server knows which physical file goes with which logical filename.  (To see that SQL does know this, do a SELECT * FROM sys.sysfiles - you'll see SQL has a row for every logical filename and that row has the corresponding physical file name.)
    And when you do the ALTER DATABASE REMOVE FILE, you must specify the logical filename.  You will get an error if you give the physical path.
    Tom

  • How do I move files in to folders?

    I just want to manage my files in folders on the cloud

    Hi THarders,
    After you log into http://files.acrobat.com, you can click the 'New Folder' button from the top-right corner to create a folder.
    Mark the checkboxes next to the files you'd like to put in the folder, then click the 'Move Files' button.
    It's that easy!
    Please let us know if you have any questions!
    -David

Maybe you are looking for

  • Macbook pro shuts down intermittently

    my macbook pro shuts down intermittently i do not know what the problem is ?

  • I how do I retrieve a username for Firefox Help if I have forgotten it?

    I am asking this using my private E-mail, but I also have a work login for Firefox help which I am unable to access. I am able to reset my password for that account, but I am unable to guess or find out what username I used.

  • Palm Desktop 2

    I recently had to dump my computer due to major problems, and reboot the system. I had all the palm downloads on my computer and everything worked great, now after the reboot I can no longer send files to my Palm Desktop to be able to put on my phone

  • Zip code retail store locator

    Hi guys, Does anyone know the best, least-expensive way to add a zip-code based retail store locator for a wholesale site that has 2000 retailers in its database? BTW: My backend coding skills are very limited. Thanks, Fudo

  • Gmail disappeared - Setup now reads Update Failed

    Hello Smartphone: BB Bold 9900 OS: 7.1 A week ago my gmail disappeared from my BB home page. I go to the Setup wizard and try to setup a new account, but it only displays the user name and password fields. I enter the correct data for both, and get a