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.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Use GetFileAttributes(), and check for FILE_ATTRIBUTE_ENCRYPTED.

link|improve this answer
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 '09 at 17:56
Ah, sorry, missed your C# tag. Good to hear you found an answer though :) – bdonlan Oct 23 '09 at 19:14
feedback

Your Answer

 
or
required, but never shown

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