Cannot copy large files to my external hard drive

kaiser_man

Registered
I have a 38gb iMovie file on my MacBook. I also have a 160gb external HDD. I want to copy the file across, sounds simple right? It will start copying happily but when it gets to about 8-10gb I get this error message (EVERY TIME!):

Sorry, the operation could not be completed because an unexpected error has occurred (Error code -1309).

Can anyone help me? I really do not want to delete this file as it is a wedding video I did for a friend only a few months ago.

I am trying to copy across to a Freecom II drive using USB.

Thanks

Kai
 
How is the external drive formatted? If I remember correctly FAT32 can only handle files up to 4GB in size.
 
Is it a single iMovie file, or an iMovie project? (Collection of files.) If it's a collection of files, you may be trying to copy a file with an invalid filename for the target filesystem.
 
Well you'd have to reformat it to Mac OS Extended using Disc Utility, but of course first you'd need to back up any files on it to DVD or some other format. Also, FAT32 has the advantage of being both readable and writable on PC as well as Mac, whereas the Mac format can't be seen by PCs (unless you buy software called MacDrive).
 
I hoped that would not be your response! I now need to find 70gb of space so I can re-format my drive. Thanks for your help.

Kai
 
I hoped that would not be your response! I now need to find 70gb of space so I can re-format my drive. Thanks for your help.

Kai

Maybe you split up the external drive in 2 parts and make 1 part fat32 and the other OS-X preferred format. Allows you to still connect your drive to PC's (for exchanging data).


Good Luck, Kees
 
I don't need to use it for a PC so formatting it to OS X is fine, my problem is offloading the drive to re-format it.
 
I have now managed to clear the HDD...

Where in Disc Utility do I re-format the drive? Is it in Erase? Also what should I format to?:

Mac OS Extended (Journaled)
Mac OS Extended
Mac OS Extended (Case-senitive, Journaled)
Mac OS Extended (Case-senitive)

Sorry I am not actually stupid, I just want to make sure I get this right
 
No problem, we're here to help!

Yes, it is under 'Erase' and I use "Mac OS extended (journaled), that is the default for Mac discs.
 
Ok, you have repartitioned your disk, so this comes too late.

But, you could have used split-command (from Terminal.app). With split,
you can split the file to smaller pieces. The pieces are of same size,
measured either will line count or size.

So in your case:

$ split -b 1900m TheBigFile.avi /TheExternalDisk/piece.

I used 1900m, so each file (/TheExterenalDisk/piece.aa, /TheExternalDisk/piece.ab ...) will be of 1900MB (all but the last) and
thus fit nicely on the FAT32 disk.

You can recreate the original file with

$ cat /TheExternalDisk/piece.?? > newBigFile.avi
 
apart from the unix commands, this reminded of a program i had lying about, Split&Concat, which is a graphical interface to the same system.
 
Back
Top