Which application allocated data before copy to reduce fragmentation ? When copying large chuck of photo jpeg using default windows 7 copy to a backup hard disk , I gets full of 12% fragmentation after analyze the backup hard disk. Hoping for expert user recommend a technique or a application which allocated the file sector before copying or moving. A good sync application will do too.
I use robocopy to avoid fragmentation. The first run creates a directory structure like your source tree (with all jpegs as zero bytes files). The second run replaces those zero byte files with the actual data. It will create a directory/file layout like this: DDDDFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF instead of: DFFFFFFFFFFDFFFFFFDFFFFFFFFFDFFFFFFFFDFFFFFFFFFFFFDFFFFFF Code: robocopy /np /r:0 /w:0 /e /create <source-path> <dest-path> robocopy /np /r:0 /w:0 /e <source-path> <dest-path>