vote up 4 vote down star

Hi,

Is there a way to guarantee that a file on Windows (using the NTFS file system) will use contiguous sectors on the hard disk? In other words, the first chunk of the file will be stored in a certain sector, the second chunk of the file will be stored in the next sector, and so on.

I should add that I want to be able to create this file programmatically, so I'd rather not just ask the user to defrag their harddrive after creating this file. If there is a way to programmatically defrag just the file that I create, then that would be OK too.

Thanks,

Terry

flag

75% accept rate
Can you update your post with the purpose of doing this? I assume it's for performance, but trying to optimize a file's location on the disk seems a bit over the top to me. If you clarify what you're trying to do maybe there is another approach we can offer that will solve your problem. – Outlaw Programmer Sep 10 '08 at 20:44

3 Answers

vote up 7 vote down check

I would start here:

http://technet.microsoft.com/en-us/sysinternals/bb897428.aspx

and follow Mark's documentation of the defrag stuff:

http://technet.microsoft.com/en-us/sysinternals/bb897427.aspx

link|flag
vote up 1 vote down

I know of no such guarantees.

But also keep in mind that NTFS "files" are comprised of multiple data streams. So you are actually looking for a way to guarantee that a stream is contiguous.

link|flag
vote up 0 vote down

I believe there's no way to achieve that. You can only defragment the file after it's been written.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.