void CreateDirectory( string folder )

book_4_sparkGenerated
code_blocksInput

Description

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.

Usage

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

// 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.