vote up 0 vote down star

Anyone has any idea?? GetFileAttributes returns 32 (FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_ARCHIVE). The file is C:\WINDOWS\system32\drivers\etc\hosts.

Thanks a lot!

flag

0% accept rate
2  
Your question doesn't make sense, as 32 != FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_ARCHIVE (should be 33) – mghie Jun 7 at 9:49

3 Answers

vote up 0 vote down

http://msdn.microsoft.com/en-us/library/aa364944(VS.85).aspx

Take a look at this. Response 32 is only FILE_ATTRIBUTE_ARCHIVE. So your code is working fine.

link|flag
vote up 0 vote down

Which of the following is your situation?

1) GetFileAttributes returns 33 (FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_ARCHIVE)

or

2) GetFileAttributes returns 32 (FILE_ATTRIBUTE_ARCHIVE)

If the hosts file does not have the read only attribute, and GetFileAttributes does not return INVALID_FILE_ATTRIBUTES then you can trust it's return value. So if the file actually doesn't have the read only attribute, then you have situation #2 above.

link|flag
vote up 0 vote down

It returns 33 (FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_ARCHIVE). The hosts file ISN'T read only, but it is the return value.

link|flag

Your Answer

Get an OpenID
or

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