FF-1680: New flow elements for file/folder dates

This commit is contained in:
John Andrews
2024-07-20 15:53:38 +12:00
parent c28b2cee88
commit 7e13545972
2 changed files with 20 additions and 0 deletions

View File

@@ -140,6 +140,16 @@ public class LocalFileService : IFileService
}
}
public Result<DateTime> DirectoryCreationTimeUtc(string path)
{
throw new NotImplementedException();
}
public Result<DateTime> DirectoryLastWriteTimeUtc(string path)
{
throw new NotImplementedException();
}
public Result<bool> FileExists(string path)
{
if (IsProtectedPath(ref path))

View File

@@ -45,6 +45,16 @@ public class TestFileService : IFileService
throw new NotImplementedException();
}
public Result<DateTime> DirectoryCreationTimeUtc(string path)
{
throw new NotImplementedException();
}
public Result<DateTime> DirectoryLastWriteTimeUtc(string path)
{
throw new NotImplementedException();
}
public Result<bool> FileExists(string path)
{
throw new NotImplementedException();