vote up 1 vote down star
1

Suddenly, we found out that WinXP SP3 didn't allow to create NTFS sparse file in user-mode application. Namely, DeviceIoControl with FSCTL_SET_SPARSE returns with error 0x57 (ERROR_INVALID_PARAMETER). The same code works well in SP2. Also, it's all ok if make the same calls from kernel-mode (both in SP3 and SP2).

Google says nothing about this. Has anyone met this problem or even have some additional info about it?

flag
Are you using FSCTL_SET_SPARSE etc? More info here: msdn.microsoft.com/en-us/library/… – bk1e Nov 6 '08 at 17:10
Yes, of course. In usermode, DeviceIoControl with FSCTL_SET_SPARSE returns with error 0x57 (ERROR_INVALID_PARAMETER) under WinXP SP3 and works well under WinXP SP2. – Yakov Nov 6 '08 at 17:34

1 Answer

vote up 1 vote down

Sparse files are working fine for me in WinXP SP3. What is the value of GetLastError after the call to CreateFile? Or after DeviceIoControl if that is what you are using?

This site has some good info on sparse files: http://www.flexhex.com/docs/articles/sparse-files.phtml

The MSDN documentation is a given.

link|flag
Hi Adzm, it's interesting that it behaves differently. We get an 0x57 (ERROR_INVALID_PARAMETER) after DeviceIoControl (added these details into the question text). But, it happens only when we try to create sparse file in user mode, in kernel mode it works well. Thanks for the link. – Yakov Nov 6 '08 at 18:58

Your Answer

Get an OpenID
or

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