diff --git a/starsky/starsky.foundation.storage/Storage/StorageThumbnailFilesystem.cs b/starsky/starsky.foundation.storage/Storage/StorageThumbnailFilesystem.cs index a536222aa..aad9b4bee 100644 --- a/starsky/starsky.foundation.storage/Storage/StorageThumbnailFilesystem.cs +++ b/starsky/starsky.foundation.storage/Storage/StorageThumbnailFilesystem.cs @@ -49,12 +49,12 @@ public bool ExistFolder(string path) public FolderOrFileModel.FolderOrFileTypeList IsFolderOrFile(string path) { - throw new NotImplementedException(); + throw new NotSupportedException(); } public void FolderMove(string fromPath, string toPath) { - throw new NotImplementedException(); + throw new NotSupportedException(); } public bool FileMove(string fromPath, string toPath) @@ -113,12 +113,12 @@ public bool FileDelete(string path) public void CreateDirectory(string path) { - throw new NotImplementedException(); + throw new NotSupportedException(); } public bool FolderDelete(string path) { - throw new NotImplementedException(); + throw new NotSupportedException(); } public IEnumerable GetAllFilesInDirectory(string path) @@ -130,17 +130,17 @@ public IEnumerable GetAllFilesInDirectory(string path) public IEnumerable GetAllFilesInDirectoryRecursive(string path) { - throw new NotImplementedException(); + throw new NotSupportedException(); } public IEnumerable GetDirectories(string path) { - throw new NotImplementedException(); + throw new NotSupportedException(); } public IEnumerable> GetDirectoryRecursive(string path) { - throw new NotImplementedException(); + throw new NotSupportedException(); } /// @@ -174,7 +174,7 @@ public bool WriteStream(Stream stream, string path) public bool WriteStreamOpenOrCreate(Stream stream, string path) { - throw new NotImplementedException(); + throw new NotSupportedException(); } public Task WriteStreamAsync(Stream stream, string path)