FF-1726: Renamed Directory Date Compare to Folder Date Compare

This commit is contained in:
John Andrews
2024-08-15 05:58:44 +12:00
parent 3e43d7e8e5
commit 9ff6560894
2 changed files with 5 additions and 5 deletions

View File

@@ -6,9 +6,9 @@ using FileFlows.Plugin.Models;
namespace FileFlows.BasicNodes.File;
/// <summary>
/// Flow element that compares if a Directory is older than the given period
/// Flow element that compares if a Folder is older than the given period
/// </summary>
public class DirectoryDateCompare : Node
public class FolderDateCompare : Node
{
/// <inheritdoc />
public override int Inputs => 1;

View File

@@ -161,16 +161,16 @@
"OutputErrorVariable-Help": "An optional variable name to store the process error output into"
}
},
"DirectoryDateCompare": {
"FolderDateCompare": {
"Label": "Folder Date Compare",
"Description": "Checks if the directory creation or last write time matches the specified date constraint.",
"Description": "Checks if the folder creation or last write time matches the specified date constraint.",
"Outputs": {
"1": "Matches the date constraint.",
"2": "Does not match the date constraint."
},
"Fields": {
"Path": "Path",
"Path-Help": "The path to the folder to check. Leave empty to check the current working file.\nIf a file is specified the directory containing the file will be checked.",
"Path-Help": "The path to the folder to check. Leave empty to check the current working file.\nIf a file is specified the folder containing the file will be checked.",
"Date": "Date",
"DateComparision": "Comparision"
}