directory class : Create() method
Description
Create a directory.
Syntax
directoryInstance.Create()
Arguments
None
Return value
None
Sample code
1: | directory dir = new directory("c:\somewhere..."); |
2: | dir.Create(); |
Notes
It's a wrapper of the System.IO.DirectoryInfo.Create() method.
If the directory already exists, this method does nothing.