Méthode | Description | |
---|---|---|
CreateDirectory ( string path ) : |
Creates all directories and subdirectories as specified by path.
|
|
DirectoryExists ( string directory ) : bool |
Determines whether the given path refers to an existing directory on disk.
|
|
GetFileNameWithoutExtension ( string path ) : string |
Returns the file name of the specified path string without the extension.
|
|
GetTextWriter ( string path, bool append ) : |
Returns a writer that stores text in the specified path.
|
Méthode | Description | |
---|---|---|
BuildSystem ( ) : System.IO |
Initializes a new instance of the BuildSystem class.
|
public CreateDirectory ( string path ) : |
||
path | string | The directory path to create. |
Résultat |
public DirectoryExists ( string directory ) : bool | ||
directory | string | The path to test. |
Résultat | bool |
public GetFileNameWithoutExtension ( string path ) : string | ||
path | string | The path of the file. |
Résultat | string |
public GetTextWriter ( string path, bool append ) : |
||
path | string | The filename to write data to. |
append | bool | if set to |
Résultat |