Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the value of OPEN_EXISTING in the Windows API?

I'm trying to open directories directly so I can examine the entries for deleted files, and I need to specify that value, but the C# environment doesn't include that under the FileMode enumeration.

related question: CreateFile to view a directory

share|improve this question

2 Answers

General tip: Download the Windows SDK, no matter what language you are using. Then you can grep the included header files and look for the constants.

share|improve this answer
up vote 1 down vote accepted

It appears that the value of OPEN_EXISTING is 3.

MSDN - CreateFile

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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