From a326a7638cc9dac80c73d19e7334122466bdd558 Mon Sep 17 00:00:00 2001 From: Koisu Date: Tue, 24 Jun 2025 11:46:27 -0700 Subject: [PATCH] refactoring --- Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs b/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs index 239d27e3d..79f307368 100644 --- a/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs +++ b/Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs @@ -377,7 +377,9 @@ namespace Flow.Launcher.Plugin.SharedCommands } return true; } - + /// + /// Returns true is the given name is a valid name for a directory, not a path + /// public static bool IsValidDirectoryName(string name) { if (IsReservedName(name)) return false;