diff --git a/Apprise/Apprise.csproj b/Apprise/Apprise.csproj index 2033af1e..0d510c3c 100644 Binary files a/Apprise/Apprise.csproj and b/Apprise/Apprise.csproj differ diff --git a/BasicNodes/BasicNodes.csproj b/BasicNodes/BasicNodes.csproj index ec197716..f2e879b9 100644 Binary files a/BasicNodes/BasicNodes.csproj and b/BasicNodes/BasicNodes.csproj differ diff --git a/BasicNodes/Tests/CopyTests.cs b/BasicNodes/Tests/CopyTests.cs index fa2f2a7b..30f3a666 100644 --- a/BasicNodes/Tests/CopyTests.cs +++ b/BasicNodes/Tests/CopyTests.cs @@ -34,6 +34,20 @@ public class CopyTests Assert.AreEqual(2, result); } + [TestMethod] + public void CopyTests_Dir_DateReplacements() + { + var logger = new TestLogger(); + var args = new FileFlows.Plugin.NodeParameters(@"D:\videos\testfiles\bigbuckbunny_480p_30s.mp4", logger, false, string.Empty); + args.PathMapper = s => Map(s); + + CopyFile node = new(); + node.CopyFolder = true; + node.DestinationPath = @"D:\videos\converted"; + node.DestinationFile = "{file.Orig.FileName}-{file.Create.Month:00}-{file.Create.Year}{ext}"; + var result = node.Execute(args); + Assert.AreEqual(1, result); + } string Map(string path) { diff --git a/ChecksumNodes/ChecksumNodes.csproj b/ChecksumNodes/ChecksumNodes.csproj index d42a6b74..99c996c5 100644 Binary files a/ChecksumNodes/ChecksumNodes.csproj and b/ChecksumNodes/ChecksumNodes.csproj differ diff --git a/CollectionNodes/CollectionNodes.csproj b/CollectionNodes/CollectionNodes.csproj index ff13de23..ef5c80f4 100644 Binary files a/CollectionNodes/CollectionNodes.csproj and b/CollectionNodes/CollectionNodes.csproj differ diff --git a/DiscordNodes/DiscordNodes.csproj b/DiscordNodes/DiscordNodes.csproj index f54e37f2..b50eefb9 100644 Binary files a/DiscordNodes/DiscordNodes.csproj and b/DiscordNodes/DiscordNodes.csproj differ diff --git a/EmailNodes/EmailNodes.csproj b/EmailNodes/EmailNodes.csproj index f0b26659..4244525c 100644 Binary files a/EmailNodes/EmailNodes.csproj and b/EmailNodes/EmailNodes.csproj differ diff --git a/Emby/Emby.csproj b/Emby/Emby.csproj index 93d95ed0..d3fc8a2b 100644 Binary files a/Emby/Emby.csproj and b/Emby/Emby.csproj differ diff --git a/Gotify/Gotify.csproj b/Gotify/Gotify.csproj index 0715bc73..277be62d 100644 Binary files a/Gotify/Gotify.csproj and b/Gotify/Gotify.csproj differ diff --git a/ImageNodes/ImageNodes.csproj b/ImageNodes/ImageNodes.csproj index 3809f50e..1f0bcf03 100644 Binary files a/ImageNodes/ImageNodes.csproj and b/ImageNodes/ImageNodes.csproj differ diff --git a/MetaNodes/MetaNodes.csproj b/MetaNodes/MetaNodes.csproj index 93263df9..2afe5ebb 100644 Binary files a/MetaNodes/MetaNodes.csproj and b/MetaNodes/MetaNodes.csproj differ diff --git a/MusicNodes/MusicNodes.csproj b/MusicNodes/MusicNodes.csproj index 3809f6cd..e17eb775 100644 Binary files a/MusicNodes/MusicNodes.csproj and b/MusicNodes/MusicNodes.csproj differ diff --git a/Plex/Plex.csproj b/Plex/Plex.csproj index 6f9b18d2..2f9f3ebc 100644 Binary files a/Plex/Plex.csproj and b/Plex/Plex.csproj differ diff --git a/VideoLegacyNodes/VideoLegacyNodes.csproj b/VideoLegacyNodes/VideoLegacyNodes.csproj index 7a6a4ca8..74531a49 100644 Binary files a/VideoLegacyNodes/VideoLegacyNodes.csproj and b/VideoLegacyNodes/VideoLegacyNodes.csproj differ diff --git a/VideoNodes/VideoNodes.csproj b/VideoNodes/VideoNodes.csproj index d379ec7b..c8b6df2e 100644 Binary files a/VideoNodes/VideoNodes.csproj and b/VideoNodes/VideoNodes.csproj differ