mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-02-09 03:39:26 -06:00
FF-1680: New flow elements for file/folder dates
This commit is contained in:
@@ -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))
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user