Added get methods to API.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-01-09 18:21:31 -07:00
parent b73c2e979f
commit 3c67d37e12
10 changed files with 339 additions and 267 deletions

View File

@@ -3,8 +3,8 @@
public interface IFileHelper
{
string GetFullFilePath(string currentFilePath, bool mustExist = true);
public string MoveFileFromTemp(string currentFilePath, string newFolder);
public bool DeleteFile(string currentFilePath);
string MoveFileFromTemp(string currentFilePath, string newFolder);
bool DeleteFile(string currentFilePath);
}
public class FileHelper: IFileHelper
{