Just allow spaces ... they are suported.

This commit is contained in:
2018-12-12 12:30:33 +00:00
parent 3ab24fc5ae
commit f32f37da5d

View File

@ -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();
}
}