From 26135523257932a8db4cdefb934163e929c331fc Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Mon, 16 Jul 2018 02:10:47 +0200 Subject: [PATCH] no space in file names, it the bad --- 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 a104b029..d54456fc 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