var myDirectory =
FileSystemHelper.Directory
.WithPath( @"C:\Temp\TestLog")
.MakeExist();
Typically created through VacheTache.FileSystem.FileSystemHelper.Directory
.
This property returns the path without any filename.
Sets up a Directory to create.
This is the "act" method where the directory is created if needed or let be if it already exists..
var myFile =
FileSystemHelper.File
.WithPath(@"C:\Temp\TestLog")
.WithFilename("flag.txt")
.MakeExist();
Typically created through VacheTache.FileSystem.FileSystemHelper.File
.
Retrieves the name of the file to be created, with no path.
Returns the path for the file to be created, without an filename.
Returns the path and the filename of the file to be created, as one string.
Returns the size of the file to be created.
Sets up the filename of the file to create.
Sets up the path of the file to create.
Sets up the size, in bytes, of the file to create.
This is the "act" method where the directory and file is created if needed or let be if it already exists..