Just allow spaces ... they are suported.

This commit is contained in:
Paul Schneider 2018-12-12 12:30:33 +00:00
commit 3acded5435

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