The CreateDirectory
method is a member of the BaseFileSystem
class in the Sandbox namespace. This method is used to create a new directory at the specified path within the file system. If the directory already exists, no action is taken.
The CreateDirectory
method is a member of the BaseFileSystem
class in the Sandbox namespace. This method is used to create a new directory at the specified path within the file system. If the directory already exists, no action is taken.
To use the CreateDirectory
method, you need to have an instance of the BaseFileSystem
class. Call the method with the path of the directory you wish to create as a string parameter.
Parameters:
folder
(System.String): The path where the new directory should be created. This path is relative to the root of the file system.// Example of using CreateDirectory method BaseFileSystem fileSystem = new BaseFileSystem(); string directoryPath = "my/new/directory"; fileSystem.CreateDirectory(directoryPath); // This will create a directory at the specified path if it does not already exist.