CreateDirectory (kernel32)
Last changed: WithLithum-112.101.111.191

.
Summary

C# Signature:

[DllImport("kernel32.dll")]
static extern bool CreateDirectory(string lpPathName,
   IntPtr lpSecurityAttributes);

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

string path = "c:\\testdir";

CreateDirectory(path, IntPtr.Zero);

Alternative Managed API:

Do you know one? Please contribute it!

Documentation