From 7e1354597262ce1e4c9d51b2644463ab95c76b7e Mon Sep 17 00:00:00 2001 From: John Andrews Date: Sat, 20 Jul 2024 15:53:38 +1200 Subject: [PATCH] FF-1680: New flow elements for file/folder dates --- BasicNodes/Tests/_LocalFileService.cs | 10 ++++++++++ BasicNodes/Tests/_TestFileService.cs | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/BasicNodes/Tests/_LocalFileService.cs b/BasicNodes/Tests/_LocalFileService.cs index 4ecd8d18..75685996 100644 --- a/BasicNodes/Tests/_LocalFileService.cs +++ b/BasicNodes/Tests/_LocalFileService.cs @@ -140,6 +140,16 @@ public class LocalFileService : IFileService } } + public Result DirectoryCreationTimeUtc(string path) + { + throw new NotImplementedException(); + } + + public Result DirectoryLastWriteTimeUtc(string path) + { + throw new NotImplementedException(); + } + public Result FileExists(string path) { if (IsProtectedPath(ref path)) diff --git a/BasicNodes/Tests/_TestFileService.cs b/BasicNodes/Tests/_TestFileService.cs index b0f21d9b..4d79603f 100644 --- a/BasicNodes/Tests/_TestFileService.cs +++ b/BasicNodes/Tests/_TestFileService.cs @@ -45,6 +45,16 @@ public class TestFileService : IFileService throw new NotImplementedException(); } + public Result DirectoryCreationTimeUtc(string path) + { + throw new NotImplementedException(); + } + + public Result DirectoryLastWriteTimeUtc(string path) + { + throw new NotImplementedException(); + } + public Result FileExists(string path) { throw new NotImplementedException();