The flag indicates to create destination directory if not exists. Default value is true.
useSequentialFileNameIfExists
bool
The flag indicates that target file name should be changed by adding sequential postfix if file with specfied name already exists. Default value is false.
SaveFileAsync()
Asynchronously saves a byte array to a file by an absolute path.
The flag indicates to create destination directory if not exists. Default value is true.
useSequentialFileNameIfExists
bool
The flag indicates that target file name should be changed by adding sequential postfix if file with specfied name already exists. Default value is false.
cancellationToken
CancellationToken
The token to monitor for cancellation requests. Default value is None.
ReadFile()
Synchronously reads a file from an absolute path to a byte array.
All parameters:
Param name
Param type
Description
path
string
The absolute file path to read to.
throwIfNotExists
bool
The flag indicates to throw exception if file not exists. Default value is true.
You can also synchronously reads a file from a stream to a byte array.
All parameters:
Param name
Param type
Description
stream
Stream
The Stream (MemoryStream, FileStream, etc.).
initialLength
long
Length of returning byte array. Default value is 0.
ReadFileAsync()
Asynchronously reads a file from an absolute path to a byte array.
All parameters:
Param name
Param type
Description
path
string
The absolute file path to read to.
throwIfNotExists
bool
The flag indicates to throw exception if file not exists. Default value is true.
cancellationToken
CancellationToken
The token to monitor for cancellation requests. Default value is None.
You can also asynchronously reads a file from a stream to a byte array.
All parameters:
Param name
Param type
Description
stream
Stream
The Stream (MemoryStream, FileStream, etc.).
initialLength
long
Length of returning byte array. Default value is 0.
cancellationToken
CancellationToken
The token to monitor for cancellation requests. Default value is None.
DeleteFile()
Deletes a file if it exists.
All parameters:
Param name
Param type
Description
path
string
The absolute file path to delete to.
GetFilePathWithSequentialFileName()
Returns an absolute path with variable destination file name with sequential postfix e.g. ("file_1.txt", "file_2.txt").