From f32f37da5d75dc92a7569e61a6e2754aa366c85d Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Wed, 12 Dec 2018 12:30:33 +0000 Subject: [PATCH] Just allow spaces ... they are suported. --- Yavsc.Abstract/FileSystem/FileSystemHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Yavsc.Abstract/FileSystem/FileSystemHelpers.cs b/Yavsc.Abstract/FileSystem/FileSystemHelpers.cs index 10414dec..31b010eb 100644 --- a/Yavsc.Abstract/FileSystem/FileSystemHelpers.cs +++ b/Yavsc.Abstract/FileSystem/FileSystemHelpers.cs @@ -58,6 +58,6 @@ namespace Yavsc.Abstract.FileSystem public static class FileSystemConstants { public const char RemoteDirectorySeparator = '/'; - public static char[] ValidFileNameChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-=_~.".ToCharArray(); + public static char[] ValidFileNameChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-=_~. ".ToCharArray(); } } \ No newline at end of file