diff options
| author | Luke <luke.pulverenti@gmail.com> | 2014-01-22 10:51:34 -0800 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2014-01-22 10:51:34 -0800 |
| commit | eba384e971bd3981a3de3d1b5477b53c12f332d0 (patch) | |
| tree | 3f2dcb4993f0e0c67146c9ec7e6929db2eba703b | |
| parent | 5a327050d33df7715e884a0414ba6fa37fac2e8a (diff) | |
| parent | 5f245301ede15bc9700fff696cebf9cf33f17762 (diff) | |
Merge pull request #682 from abeloin/master
Replaced GetInvalidFileNameChars for Mono
| -rw-r--r-- | MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs b/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs index 9b3f5a306..3e02d96f6 100644 --- a/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs +++ b/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs @@ -129,7 +129,15 @@ namespace MediaBrowser.Common.Implementations.IO /// <summary> /// The invalid file name chars /// </summary> + #if __MonoCS__ + //GetInvalidFileNameChars is less restrictive in Linux/Mac than Windows, this mimic Windows behavior for mono under Linux/Mac. + private static readonly char[] InvalidFileNameChars = new char [41] { '\x00', '\x01', '\x02', '\x03', '\x04', '\x05', '\x06', '\x07', + '\x08', '\x09', '\x0A', '\x0B', '\x0C', '\x0D', '\x0E', '\x0F', '\x10', '\x11', '\x12', + '\x13', '\x14', '\x15', '\x16', '\x17', '\x18', '\x19', '\x1A', '\x1B', '\x1C', '\x1D', + '\x1E', '\x1F', '\x22', '\x3C', '\x3E', '\x7C', ':', '*', '?', '\\', '/' }; + #else private static readonly char[] InvalidFileNameChars = Path.GetInvalidFileNameChars(); + #endif /// <summary> /// Takes a filename and removes invalid characters |
