Skip to content

Commit

Permalink
#1833 change
Browse files Browse the repository at this point in the history
  • Loading branch information
qdraw committed Jan 21, 2025
1 parent 4741793 commit d7addc8
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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<string> GetAllFilesInDirectory(string path)
Expand All @@ -130,17 +130,17 @@ public IEnumerable<string> GetAllFilesInDirectory(string path)

public IEnumerable<string> GetAllFilesInDirectoryRecursive(string path)
{
throw new NotImplementedException();
throw new NotSupportedException();
}

public IEnumerable<string> GetDirectories(string path)
{
throw new NotImplementedException();
throw new NotSupportedException();
}

public IEnumerable<KeyValuePair<string, DateTime>> GetDirectoryRecursive(string path)
{
throw new NotImplementedException();
throw new NotSupportedException();
}

/// <summary>
Expand Down Expand Up @@ -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<bool> WriteStreamAsync(Stream stream, string path)
Expand Down

0 comments on commit d7addc8

Please sign in to comment.