vote up 0 vote down star

Is there a library method somewhere for figuring out whether a file has been encrypted with EFS? I see the Encrypt() and Decrypt() methods on FileInfo, but am looking for a way to query a file's state.

flag

1 Answer

vote up 3 vote down check

Use GetFileAttributes(), and check for FILE_ATTRIBUTE_ENCRYPTED.

link|flag
1  
I was looking for a .net answer, but it turns out that it is similar to your suggestion: use FileInfo.Attributes and check for FileAttributes.Encrypted – Matt Oct 23 at 17:56
Ah, sorry, missed your C# tag. Good to hear you found an answer though :) – bdonlan Oct 23 at 19:14

Your Answer

Get an OpenID
or

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