vote up 0 vote down star

Based on a file name, or a file handle, is there a Win-API method of determining what physical sector the file starts on?

flag

4 Answers

vote up 0 vote down

You can get file cluster allocation by sending FSCTL_GET_RETRIEVAL_POINTERS using DeviceIoControl.

link|flag
vote up 0 vote down

No. Why? Because a file system is an abstraction of physical hardware. You don't need to know if you're on a RAM disk, hard drive, CD, or network drive, or if your data is compressed or encrypted -- Windows takes care of these little details for you.

You can always open the physical disk, but you'd need knowledge of the file system used.

What are you trying to accomplish with this?

link|flag
vote up 1 vote down

You'd have to read the allocation table directly.

link|flag
vote up 0 vote down

I suspect that there is no such function.

Even if you know where the file starts, what good would it do? The rest of the file could be anywhere as soon as the file is larger than a single sector due to fragmentation.

You would probably need to develop deeper understanding of the file system involved and read the necessary information from the file allocation table or such mechanism.

link|flag

Your Answer

Get an OpenID
or

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