mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-14 05:15:03 +02:00
Updated Utilities
This commit is contained in:
parent
41474b87ac
commit
73b6c288a4
2 changed files with 38 additions and 0 deletions
|
@ -7,6 +7,8 @@ namespace Utilities
|
|||
public interface IFileSystem
|
||||
{
|
||||
/// <exception cref="System.ArgumentException"></exception>
|
||||
/// <exception cref="System.IO.DirectoryNotFoundException"></exception>
|
||||
/// <exception cref="System.IO.FileNotFoundException"></exception>
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
/// <exception cref="System.UnauthorizedAccessException"></exception>
|
||||
FileSystemEntry GetEntry(string path);
|
||||
|
@ -43,6 +45,13 @@ namespace Utilities
|
|||
/// <exception cref="System.UnauthorizedAccessException"></exception>
|
||||
List<FileSystemEntry> ListEntriesInDirectory(string path);
|
||||
|
||||
/// <exception cref="System.ArgumentException"></exception>
|
||||
/// <exception cref="System.IO.DirectoryNotFoundException"></exception>
|
||||
/// <exception cref="System.IO.FileNotFoundException"></exception>
|
||||
/// <exception cref="System.IO.IOException"></exception>
|
||||
/// <exception cref="System.UnauthorizedAccessException"></exception>
|
||||
List<KeyValuePair<string, ulong>> ListDataStreams(string path);
|
||||
|
||||
/// <exception cref="System.ArgumentException"></exception>
|
||||
/// <exception cref="System.IO.DirectoryNotFoundException"></exception>
|
||||
/// <exception cref="System.IO.FileNotFoundException"></exception>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue