Create Directory

  • Thread starter Thread starter Guest
  • Start date Start date
If you read the entire page of the link you provided, you will find:

"An application cannot create a directory with CreateFile; it must call
CreateDirectory or CreateDirectoryEx to create a directory."

Besides, this is a dotnet group and not a Win32 group. In dotnet, you can
use Directory.CreateDirectory to create one and Directory.Exists to check if
one exists.

HTH,
ShaneB
 
Back
Top