Do you play any tracks that exceed the 4 GB 32 bit limit? Or maybe it is foe videos?
64-bit filesystems on 32-bit systems don't have a "4GiB" limit.
Don't you have ISO files for DVDs that are over 4 GiB?
Does Itunes have its own problems with files over 4 GiB,
independent of the OS support for large files?
To do [64-bit Itunes] though they need to re-write QuickTime in its entirety in cocoa 64 And for this to happen there must be 64 bit versions of all third party codecs QT utilises.
There are Apple fans calling Adobe "lazy" (or worse) for the time
it is taking to rewrite Photoshop (and plugins) in 64-bit Cocoa.
The problem is caused by (invisible) metadada files named ._*, which cannot be copied to a FAT volume (why???).
In a Terminal, when you're in the folder you want to copy, just type:
find . -name '._*'
and you should see a lot of those files.
These are the files which are causing the copy problem if you're USING THE FINDER to copy the files/folders (!= using cp in the Terminal). If you delete all these metadata files, you can then copy the folder using the Finder. Apple is aware of this bug, and I hope they fix it soon...
Another annoying bug in FAT support is that you can't copy files > 4GB in a FAT volume (this is normal), but the Finder displays an alert saying "cannot copy file, error 0".
These aren't 'bugs' in the mac OS, they are restrictions of the FAT file system. There's no way around them, if a third party system can't support something, Apple can't support it, unless you want Apple to redevelop FAT?
Perhaps Apple should support FAT32? Windows has no problems
creating a file named "._foo" on a FAT32 volume.
Code:
S:\Windows\system32> fsutil fsinfo volumeinfo P:
Volume Name : 16GB SDHC
Volume Serial Number : 0x2cf131b5
Max Component Length : 255
File System Name : [B]FAT32[/B]
Preserves Case of filenames
Supports Unicode in filenames
S:\Windows\system32> dir p:\
Volume in drive P is 16GB SDHC
Volume Serial Number is 2CF1-31B5
Directory of p:\
2010-02-05 09:33 <DIR> DCIM
0 File(s) 0 bytes
1 Dir(s) 14,840,258,560 bytes free
S:\Windows\system32> copy nul [B]"p:\._foo"[/B]
1 file(s) copied.
S:\Windows\system32> dir p:\
Volume in drive P is 16GB SDHC
Volume Serial Number is 2CF1-31B5
Directory of p:\
2010-02-05 09:33 <DIR> DCIM
2010-02-06 20:31 0 [B]._foo[/B]
1 File(s) 0 bytes
1 Dir(s) 14,840,258,560 bytes free