Method | Description | |
---|---|---|
AppendAllText ( string path, string contents ) : void |
Appends the specified string the file, creating the file if it doesn't already exist.
|
|
Copy ( string sourceFileName, string destFileName, bool overwrite ) : void |
Copies the specified sourceFileName to destFileName.
|
|
CreateDirectory ( string path ) : void |
Creates all directories in the specified path.
|
|
Delete ( string path ) : void |
Deletes the specified file. An exception is not thrown if the file does not exist.
|
|
DirectoryExists ( string path ) : bool |
Determines whether the specified path refers to a directory that exists on disk.
|
|
FileExists ( string path ) : bool |
Determines whether the specified file exists.
|
|
GetFiles ( string path, FileEventHandler handler, bool recursive ) : void |
Gets the files in the specified directory.
|
|
GetGuid ( ) : System.Guid |
Gets a GUID.
|
|
GetTempDirectory ( ) : string |
Gets a temporary directory.
|
|
GetTempDirectory ( string parentDirectory, string prefix ) : string |
Gets a temporary directory.
|
|
GetTempFileName ( ) : string |
Creates a temporary file name. File is not automatically created.
|
|
GetTempFileName ( string extension ) : string |
Creates a temporary file name. File is not automatically created.
|
|
Move ( string srcFileName, string destFileName ) : void |
Moves the specified file to a new location.
|
|
Snapshot ( string fileName ) : void |
Take a snapshot of the specified file. The snapshot is used to rollback the file later if needed.
|
|
WriteAllBytes ( string path, byte contents ) : void |
Creates a file, and writes the specified contents to the file. If the file already exists, it is overwritten.
|
|
WriteAllText ( string path, string contents ) : void |
Creates a file, write the specified contents to the file.
|
Method | Description | |
---|---|---|
GetEnlistment ( ) : ChinhDo.Transactions.TxEnlistment | ||
TxFileManager ( ) : System |
Initializes the TxFileManager class.
|
public AppendAllText ( string path, string contents ) : void | ||
path | string | The file to append the string to. |
contents | string | The string to append to the file. |
return | void |
public Copy ( string sourceFileName, string destFileName, bool overwrite ) : void | ||
sourceFileName | string | The file to copy. |
destFileName | string | The name of the destination file. |
overwrite | bool | true if the destination file can be overwritten, otherwise false. |
return | void |
public CreateDirectory ( string path ) : void | ||
path | string | The directory path to create. |
return | void |
public Delete ( string path ) : void | ||
path | string | The file to be deleted. |
return | void |
public DirectoryExists ( string path ) : bool | ||
path | string | The directory to check. |
return | bool |
public FileExists ( string path ) : bool | ||
path | string | The file to check. |
return | bool |
public GetFiles ( string path, FileEventHandler handler, bool recursive ) : void | ||
path | string | The directory to get files. |
handler | FileEventHandler | The |
recursive | bool | if set to |
return | void |
public GetTempDirectory ( string parentDirectory, string prefix ) : string | ||
parentDirectory | string | The parent directory. |
prefix | string | The prefix of the directory name. |
return | string |
public GetTempFileName ( string extension ) : string | ||
extension | string | File extension (with the dot). |
return | string |
public Move ( string srcFileName, string destFileName ) : void | ||
srcFileName | string | The name of the file to move. |
destFileName | string | The new path for the file. |
return | void |
public Snapshot ( string fileName ) : void | ||
fileName | string | The file to take a snapshot for. |
return | void |
public WriteAllBytes ( string path, byte contents ) : void | ||
path | string | The file to write to. |
contents | byte | The bytes to write to the file. |
return | void |
public WriteAllText ( string path, string contents ) : void | ||
path | string | The file to write to. |
contents | string | The string to write to the file. |
return | void |