10.4.6 finder (copy / drag and drop) bug

Any one encounter this?
Brief summary: When copying files from an iMac to external firewire drive the finder (copy) grinds to a halt and eats up all the free disk space on the iMac hard drive
Detailed summary: iMac 20" G5 2.1GHz 1GB Ram 10.4.6 and an external LaCie 500GB firewire drive.
In an effort to move to Aperture I have begun cleaning up my iMac's hard drive which entails moving several gigabytes of jpegs, gif's, raw files, and Quark Xpress files, etc., to external hard drives.
All of these files are sorted into folders and sub-folders based on clients name. This is just a basic 'copy' from iMac to external hard drive. The iMac has about 50 GB of free hard drive space and the external hard drive has about 400 Gb free. Copying (drag and drop) any folder that has more than say a total of 7500 files inside causes the copying to start then grind to a halt. The odd part is that the free disk space on the source machine (iMac) gradually disappears during this process.
Size of the move doesn't seem to matter as it is only when the file count exceeds approx. 7500 that things go wrong. One move entailed 9000 or so files and was only 250 MB but managed to eat up all 50 GB of free space in minutes. The first clue that something is wrong is seeing the warning message pop up stating you start-up disk is full.
The only way to get the hard drive space back is to reboot the machine then all of the free disk space reappears. I have tried to relaunch the finder but that does not reclaim the missing free disk space. Also of note the memory usage never creeps up, as if this was some kind of memory leak. It stays pretty much constant through the whole process which is about 240MB.
Not sure if this matters but spotlight is currently told to ignore image files which is the bulk of what is (trying) to be moved. Also this behavior didn't occur under 10.4.5 or prior point releases.
Any ideas or thoughts?
Thanks,
-brian
iMac G5   Mac OS X (10.4.6)   LaCie external 500GB firewire drive

What is the format used on the external HD?
You did format it for Mac use (HFS+), right?
Yes, the external drive was reformatted as Mac OS Extended (Journaled) before being brought into use. I have several LaCie drives in different sizes from 250 Gb and up for back ups and never had an issue until now...
Seems to be finder related as if i open the top level folder and grab smaller groups of folders it works fine, just takes forever. So at least that is the work around. I was kind of hoping to just grab a bunch of folders start the copy and go do other things and come back and it would be done...
Thanks for the reply,
-brian

Similar Messages

  • [svn:fx-trunk] 11574: Drag and Drop - Bug fixes:

    Revision: 11574
    Author:   [email protected]
    Date:     2009-11-09 10:53:35 -0800 (Mon, 09 Nov 2009)
    Log Message:
    Drag and Drop - Bug fixes:
    - Added slight delay before drag-scrolling start.
    - Single selection ctrl+drag fixed.
    - Default drop indicator for List that doesn't have drop indicator specified in its skin. The default DI is specified through the new dropIndicatorSkin List style.
    - Memory leak for the drop indicator dynamic skin part.
    - ListItemDragProxy incorrectly listed in spark-manifest.xml moved to SparkClassess.
    QE notes: None
    Doc notes: None
    Bugs: SDK-24047, SDK-23999, SDK-23871
    Reviewer: Glenn, Deepa
    Tests run: checkintests, mustella (List, ListDragDrop)
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24047
        http://bugs.adobe.com/jira/browse/SDK-23999
        http://bugs.adobe.com/jira/browse/SDK-23871
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/List.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/HorizontalLayout.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/TileLayout.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/VerticalLayout.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/supportClasses/DropLocation.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/layouts/supportClasses/LayoutBase.as
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/ListDropIndicator.as

    Just found a reference to a work around to the issue by putting the macbook to sleep & waking it.  Worked a treat !
    This makes it usable again.  Which is lucky as I was preparing to see how far I could toss the macbook !
    Suppose I'll need to wait for a patch.

  • Drag and Drop Bug (Flash, AS3)

    Hello! Help, please! I'm making a game that involves dragging and dropping books. (Right now there is only one book.) While testing my game, I discovered by accident that no matter where I drag on the screen, the draggable book responds, moving around on screen despite the cursor not being on top of it. Here is my code. (It also snaps a larger book mc to the small one for purposes I intend to use later.)
    // Making the small book dragable. //
    small_book.addEventListener(MouseEvent.MOUSE_DOWN, fl_ClickToDrag_6);
    // when the mouse button is clicked...
    function fl_ClickToDrag_6(event:MouseEvent):void
        small_book.startDrag();
        big_book_mc.x = small_book.x;///
        big_book_mc.y = small_book.y;///-----> Makes the big book snap to the lil one when clicked.
    stage.addEventListener(MouseEvent.MOUSE_UP, fl_ReleaseToDrop_6);
    // when the mouse button is released...;
    function fl_ReleaseToDrop_6(event:MouseEvent):void
        small_book.stopDrag();
        big_book_mc.x = small_book.x;///
        big_book_mc.y = small_book.y;///-----> Makes the big book snap to the lil one when the mouse button is released.
    stage.addEventListener(MouseEvent.MOUSE_DOWN, dragFn);
    // if the mouse is currently dragging....;
    function dragFn(event:MouseEvent):void
        small_book.startDrag();
        big_book_mc.x = small_book.x;///
        big_book_mc.y = small_book.y;///-----> The big book follows while the mouse is dragging.
    // the small book is now draggable and the big book snaps to it.

    your stage listeners should be added in the mousedown listener functions and then removed in the mouseup listener functions.
    and just to clarify, your small book starts dragging no matter where there is a mousedown?

  • Drag and drop bug?

    while the application get a vertical scroll bar,
    scroll it down
    and try to drag something
    that drag and drop works improperly
    and trace the event.stageX and stageY
    the value isn't right

    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" >
    <mx:TextArea y="10" height="153" id="console" right="10"
    left="10"/>
    <mx:Script>
    <![CDATA[
    import mx.controls.Button;
    import mx.events.DragEvent;
    import mx.controls.Alert;
    import mx.core.UIComponent;
    import mx.core.DragSource;
    import mx.managers.DragManager;
    private function doDragIt(event:MouseEvent):void{
    var dragInitiator:Button=Button(event.currentTarget);
    var ds:DragSource = new DragSource();
    var BtnProxy:Button = new Button;
    BtnProxy.label="B";
    BtnProxy.width=20;
    BtnProxy.height=20;
    DragManager.doDrag(dragInitiator,ds,event,BtnProxy);
    private function doDragEnter(event:DragEvent){
    var target:VBox=VBox(event.currentTarget);
    target.setStyle("backgroundColor","BLUE");
    DragManager.acceptDragDrop(target);
    private function doDragExit(event:DragEvent){
    var target:VBox=VBox(event.currentTarget);
    target.setStyle("backgroundColor","WHITE");
    ]]>
    </mx:Script>
    <mx:Spacer x="0" y="1200"/>
    <mx:VBox id="toClick" y="211" width="50" height="50"
    borderStyle="solid" horizontalCenter="0"
    dragEnter="doDragEnter(event)" dragExit="doDragExit(event)"
    backgroundColor="#ffffff">
    </mx:VBox>
    <mx:Button y="223" label="B" height="20" width="20"
    mouseDown="doDragIt(event)" horizontalCenter="-80"/>
    </mx:Application>

  • Possible List Drag and Drop bug

    Hi all,
    I am using a spark.components.List that I wish the user to be able to reorder by dragging and dropping. Therefore I have dragEnabled,dropEnabled and dragMoveEnabled all set to true.
    I have a custom item renderer that has two states ('default' and 'notDefault' for the sake of argument) that the list uses. The currentState of the item renderer is determined by the data it is given.
    When items are moved around they do get reordered correctly, however if I have an item in the 'notDefault' state and drag it somewhere it ends up rendered in the 'default' state after dragging, even if the data it is displaying requires the 'notDefault' state. What is more frustrating is that the item renderer reports its currentState as 'notDefault' even though it is showing 'default'.
    The difference between the two states is that there is a VGroup with controls in it excluded from the 'default' state, and therefore if these are displayed before dragging (ie we are in the 'notDefault' state) they are consequently not displayed after dragging.
    Anybody have any ideas?

    Might be a bug.  File a bug or post a simple test case.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Drag and drop bug in finder

    Noticed this problem several times before, on different computers. I try to drag a file into a mail I am typing in order to attach it, and it does not appear. The green cross appears, but nothing happens. Relaunching finder fixes it.
    I do not know a way to reproduce it, it just happens from time to time.

    i found something my movieclips on different layers (for example box1mc on rooms layer other items in objects layer)Action script searchs my item in current layer , it being invisible coz its not on same layer , its on different layer.If i put my items same layer its working fine.Omg how to fix it i dont know
    (if acs cant find my item in same layer , onrelease codes working automaticaly and dont see drag drop)

  • Drag and drop broken in Mavericks?

    The drag & drop functionality keeps dropping out. The only way to get it back is to reboot.
    When it goes out I can't even move icons on my desktop. I can select them and double click to open but no dragging.
    It seems that when I attempt to drag a copy of a file it lets me drag but when I let go nothing happens. Then nothing drags.
    Anyone else having this problem?
    -Cav

    I also have this problem when dragging files between file folders in the Dock, and file folders in Finder.  Drag and drop will stop working intermittently.  When this occurs, files can be dragged from the dock, to the appropriate folder, but cannot be dropped into it.  Occasionally the borders of the column in column view are highlighted blue as if it had been selected, but the file does not "drop" into that column or folder.
    The problem is not limited to column view.  If dragging a file will not work in column view, it will not work in list view either.  Dragging files from one finder column or folder to another works fine.  For me the issue is confined to dragging files from a folder in the dock (such as the downloads folder) to a folder in the finder.
    Restarting the finder corrects the problem for a limited time.  It's not a solution since it will happen several times an hour at least.
    Would love to see an actual solution to this problem!!

  • Drag-and-drop of files into libraries is now buggy

    When dragging song files from the finder and dropping them into an iTunes Playlist, the transfer would typically begin within a couple of seconds. Now it is highly inconsistent, sometimes taking minutes or simply not happening.
    For years I've kept my song files on an external drive with no difficulty, but with the latest iTunes and Lion the drag-and-drop bug is persistent.
    Before coming to this forum I dragged some newly minted MP3 files from my iMac internal to an existing iTunes Playlist. It now sits in limbo, with the files appearing in gray in the Playlist, but not being transferred. I shall have to quit iTunes and try again. This never happened before the latest software updates.
    When this happens it is also necessary for force quit iTunes some of the time.

    The title says "libraries" but I means Playlists, of course.

  • Drag and Drop in Main in OSX Yosemite 10.2 stops working

    Hi,
    I have a number of email accounts in OSX Mail, and after waking from sleep (I think) I find that drag and drop for messages and attachments in Exchange accounts stops working.  It doesn't even initiate the drag and drop.  What also frustrating is the move mail functionality will then fail saying it was unable to move the mail.
    Once I restart mail its fine.
    I do have parallels running in the background too.
    Any thoughts?
    James.

    Hi,
    We would like to have D&D for mobile controls as shown below but it does not work... Is the functionality supported for the mobile controls?
    var
    oListBox2 = new sap.m.List("lb2", {
    items : $.map(city2.split("|"), function(v, i) {
    return new sap.m.StandardListItem({title : v });
    }),           height :
    "150px"
    }).addEventDelegate({
    onAfterRendering :function() {
    $("#lb2-list").sortable({
    connectWith : ".ui-sortable"
                                  }).disableSelection();
    Thanks in advance,
    Hristina && Wei

  • Drag and drop from applications onto desktop iOS Mavericks

    I upgraded to iOS mavericks thia morning and hve noticed that i can't drag and drop files from applications to the desktop anymore, a feature that made past iOS systems so great. Examples of this is trying to drag an image from a site (in a browser) to the desktop and dragging attachements out of email to the desktop. Is anyone else having this issue with iOS mavericks?

    Did anybody get an answer on this?
    I am having difficulties with moving files from the email to the finder..drag and drop does not work.
    Thank you

  • Hybrid Web Container support of HTML5 Drag and Drop

    Good Morning Experts!
    Testing HTML5 drag and drop capabilities on iOS devices and simulators
    it doesnt appear to work. Searching Sybase/SAP documentation and
    unable to find whether Drag and Drop is supported in the Hybrid Web
    Container.
    I did test a jQuery plugin for drag and drop and it tested successfully on a BlackBerry Simulator (but not on iOS):
    http://www.stevefenton.co.uk/Content/Jquery-Mobile-Drag-And-Drop/
    Does the Hybrid Web Container support HTML5 Drag and Drop
    capabilities?
    Is there available documentation on HTML5 support for the Hybrid Web
    Container?
    Thanks!

    Bob do you know which one is the source? The link goes to a whole directory
    http://appliness.com/code/
    Haeme Ulrich
    ulrich-media GmbH <http://www.ulrich-media.ch>
    Unser Wissen, Ihr Können: Schulungen für Publishing.

  • Problem Copying Files using Drag and Drop in Finder

    When I try to copy files from a camera's SD disk into a folder in Finder, it always seems to copy the files to some other location other than the folder I drag and dropped to. And then, when I try to redo the drag and drop, I get a message that these files already exist in the desired folder, even though I don't see them there!
    Also when I create a new folder in Finder, it never places the new folder under the folder I've currently highlighted.
    I'd love to hear whats going on here!
    Ted

    tedpratt wrote:
    When I try to copy files from a camera's SD disk into a folder in Finder, it always seems to copy the files to some other location other than the folder I drag and dropped to. And then, when I try to redo the drag and drop, I get a message that these files already exist in the desired folder, even though I don't see them there!
    What Finder "view" option are you using, List, Icons, Columns, or Cover Flow, for this question and the one below? Are you dragging those photos onto the icon of a closed folder or somewhere else? Please describe the exact process that you're executing.
    Also when I create a new folder in Finder, it never places the new folder under the folder I've currently highlighted.
    When you say "under", do you mean "within"? A new folder will be placed in the folder that's open.

  • My hard drive crashed on my MacBook Pro crashed and I need to get my CS5 up and running on the new hard drive. I copied what I could onto an external hard drive but when I drag and drop I get directions to uninstall but the uninstall folder I have does sa

    my hard drive crashed on my MacBook Pro crashed and I need to get my CS5 up and running on the new hard drive. I copied what I could onto an external hard drive but when I drag and drop I get directions to uninstall but the uninstall folder I have does says it is an alias that is no longer present. I get error 6. I would like to get my software up and running on the laptop again please

    If you subscribed to iTunes match the songs are kept in icloud. If you didn't but you did save the actual iTunes library folder which should include the music, video, etc.  you should be able to just drag this file back to your machine in the same place and when you open iTunes it will give you a chance to identify the iTunes library folder. 
    You can test this to find out if you saved the media files or not and don't need to attach your nano to do it. 
    You are correct that once you connect the nano it will clear the existing files from it and sync it with the new iTunes library. 
    If you don't have the media files i'm not sure if/how to get them back on a windows ipod.  I have everything backed up regularly because of the horror stories I have seen & heard.

  • Hi - I keep receiving the following error message on a song I purchased from itunes and am now trying to drag and drop to my iPad: "you must download items from icloud before you can copy then to iPad" what does this mean - please help! Thank you

    Hi - I keep receiving the following error message on a song I purchased from itunes and am now trying to drag and drop to my iPad: "you must download items from icloud before you can copy then to iPad" what does this mean - please help! Thank you

    Hi Poonam26c,
    If you do not have a local copy of a song which you have purchased (i.e. it is available via iTunes in the Cloud), you may need to redownload it before you can transfer it to your device. You may find the following article helpful:
    Apple Support: Downloading past purchases from the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/HT2519
    Regards,
    - Brenden

  • I am organizing my external HD and want to move files NOT COPY them. How do I drag and drop folder contents without Mac automatically copying them to the "drop" location?

    I am sorting out all the clutter and duplicate files on my external HD. In doing this I am moving the entire contents of folders to new locations. Some of these folders cointain gigs of info. I do not want to have to spend large amounts of time waiting for hundreds of gigs to copy somewhere then  moving the originals to the trash and wait even longer deleting all of them. All I want to do is move the files up a subfolder, but the way Finder goes aobut doing it can be a 400 GB swing taking hours. How do I just "move" them?

    Check out this discussion. Worked for me.
    http://tinyurl.com/7dmh9p5
    Quote:
    When I do a drag and drop in Finder to move a folder into another folder it makes a copy of the folder in the new location instead of moving it like the help documentation says and like it used to do in Snow Leopard.  I have looked all over in preferences for a setting the contols the move/copy outcome of drag and drop and have been unable to find anything.  Is this the way Lion is supposed to work?
    MacBook Pro, Mac OS X (10.7.1)
    This solved my question by jsd2  on Oct 9, 2011 6:33 AM
    I did a global change of permissions for the entire documents account in the currrent user account using the get info and apply to enclosed items.
    I think what is happening is that the Documents folder normally carries an "everyone deny delete" ACL, meant to protect it from accidental deletion:
    $ ls -lde ~/Documents
    drwx------+ 6 t1  staff  204 Oct  9 08:51 /Users/t1/Documents
    0: group:everyone deny delete
    ACLs are special types of permissions that do not show up in GetInfo, but can get propagated if you click "Apply to Enclosed Items" on a folder that carries them. Affected files that acquire  that ACL would require password authentication to move or delete them.
    I think the following Terminal command (copy and paste it) should remove such ACLs from items within the Documents  folder:
    chmod -RN ~/Documents/*
    Message was edited by: miz_mdk

Maybe you are looking for

  • Recording MP3

    HI Please excuse my ignorance but I'm totally new to the mac. I am looking for a way of recording an mp3 directly on to my mac for a audio assignment I need to do. I can record in garage band but what format is this saved in? and is there anyway of c

  • Error 85 using Lecroy wavejet 324A

    hello!!! I'm trying to communicate with my computer Lecroy WaveJet 324A oscilloscope, using the examples that come in LabView but sends Error 85 occurred at Scan From String (arg 1) in LeCroy WaveJet Series.lvlib: Error Query.vi-> LeCroy WaveJet Seri

  • Install stalls during initializing - illustrator - Macbook Air 10.7.5

    Ran CC cleaner Downloaded CS6 Illustrator file .dmg Launched Install Installer launches and goes to "Initializing Installer" but it stalls at about 25% and won't progress. I don't get an error, I don't get a message, it just stalls. If I cancel, the

  • Activate a field VTTK-/BEV1/RPFLGNR in screen VT01N

    Dear guru's, As per the client requirement i would like to activate the field /BEV1/RPFLGNR of VTTK table in VT01N  screen for entry. kindly help us in this regard. Regards, Abdul Rahim

  • BEx Broadcaster configuration - maximum number of cells in result set

    Hi all, I've got an error message when runnig a BEx Broadcaster setting to send query output as xls file. Query was running, but empty xls sheet was sent. Message was: result set to large (1.5 Mio cells); data retrieval restricted by configuration (m