FileHelper
SaveFile()
FileHelper.SaveFile("absolute_file_path", bytes);string existingFilePath = "D:\\readme.txt";
string newFilePath = FileHelper.SaveFile(existingFilePath, bytes); // Returns "D:\\readme_1.txt".Param name
Param type
Description
SaveFileAsync()
await FileHelper.SaveFileAsync("absolute_file_path", bytes);string existingFilePath = "D:\\readme.txt";
string newFilePath = await FileHelper.SaveFileAsync(existingFilePath, bytes); // Returns "D:\\readme_1.txt".Param name
Param type
Description
ReadFile()
Param name
Param type
Description
Param name
Param type
Description
ReadFileAsync()
Param name
Param type
Description
Param name
Param type
Description
DeleteFile()
Param name
Param type
Description
GetFilePathWithSequentialFileName()
Param name
Param type
Description
Last updated