From 874e07fc36b7754c712fdf02639e03aaa8a984c5 Mon Sep 17 00:00:00 2001 From: abeloin Date: Wed, 22 Jan 2014 12:52:16 -0500 Subject: [PATCH 1/2] Replaced GetInvalidFileNameChars for Mono --- MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs b/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs index 9b3f5a306c..582e05d797 100644 --- a/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs +++ b/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs @@ -129,7 +129,14 @@ namespace MediaBrowser.Common.Implementations.IO /// /// The invalid file name chars /// + #if __MonoCS__ + 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 /// /// Takes a filename and removes invalid characters From 5f245301ede15bc9700fff696cebf9cf33f17762 Mon Sep 17 00:00:00 2001 From: abeloin Date: Wed, 22 Jan 2014 13:43:15 -0500 Subject: [PATCH 2/2] Added comment for: Replaced GetInvalidFileNameChars for Mono --- MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs b/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs index 582e05d797..3e02d96f6e 100644 --- a/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs +++ b/MediaBrowser.Common.Implementations/IO/CommonFileSystem.cs @@ -130,6 +130,7 @@ namespace MediaBrowser.Common.Implementations.IO /// The invalid file name chars /// #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',