IFileSystem.cs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. namespace Utilities
  5. {
  6. public interface IFileSystem
  7. {
  8. /// <exception cref="System.ArgumentException"></exception>
  9. /// <exception cref="System.IO.DirectoryNotFoundException"></exception>
  10. /// <exception cref="System.IO.FileNotFoundException"></exception>
  11. /// <exception cref="System.IO.IOException"></exception>
  12. /// <exception cref="System.UnauthorizedAccessException"></exception>
  13. FileSystemEntry GetEntry(string path);
  14. /// <exception cref="System.ArgumentException"></exception>
  15. /// <exception cref="System.IO.DirectoryNotFoundException"></exception>
  16. /// <exception cref="System.IO.IOException"></exception>
  17. /// <exception cref="System.UnauthorizedAccessException"></exception>
  18. FileSystemEntry CreateFile(string path);
  19. /// <exception cref="System.ArgumentException"></exception>
  20. /// <exception cref="System.IO.DirectoryNotFoundException"></exception>
  21. /// <exception cref="System.IO.IOException"></exception>
  22. /// <exception cref="System.UnauthorizedAccessException"></exception>
  23. FileSystemEntry CreateDirectory(string path);
  24. /// <exception cref="System.ArgumentException"></exception>
  25. /// <exception cref="System.IO.DirectoryNotFoundException"></exception>
  26. /// <exception cref="System.IO.FileNotFoundException"></exception>
  27. /// <exception cref="System.IO.IOException"></exception>
  28. /// <exception cref="System.UnauthorizedAccessException"></exception>
  29. void Move(string source, string destination);
  30. /// <exception cref="System.ArgumentException"></exception>
  31. /// <exception cref="System.IO.DirectoryNotFoundException"></exception>
  32. /// <exception cref="System.IO.FileNotFoundException"></exception>
  33. /// <exception cref="System.IO.IOException"></exception>
  34. /// <exception cref="System.UnauthorizedAccessException"></exception>
  35. void Delete(string path);
  36. /// <exception cref="System.ArgumentException"></exception>
  37. /// <exception cref="System.IO.DirectoryNotFoundException"></exception>
  38. /// <exception cref="System.IO.IOException"></exception>
  39. /// <exception cref="System.UnauthorizedAccessException"></exception>
  40. List<FileSystemEntry> ListEntriesInDirectory(string path);
  41. /// <exception cref="System.ArgumentException"></exception>
  42. /// <exception cref="System.IO.DirectoryNotFoundException"></exception>
  43. /// <exception cref="System.IO.FileNotFoundException"></exception>
  44. /// <exception cref="System.IO.IOException"></exception>
  45. /// <exception cref="System.UnauthorizedAccessException"></exception>
  46. List<KeyValuePair<string, ulong>> ListDataStreams(string path);
  47. /// <exception cref="System.ArgumentException"></exception>
  48. /// <exception cref="System.IO.DirectoryNotFoundException"></exception>
  49. /// <exception cref="System.IO.FileNotFoundException"></exception>
  50. /// <exception cref="System.IO.IOException"></exception>
  51. /// <exception cref="System.UnauthorizedAccessException"></exception>
  52. Stream OpenFile(string path, FileMode mode, FileAccess access, FileShare share, FileOptions options);
  53. /// <exception cref="System.ArgumentException"></exception>
  54. /// <exception cref="System.IO.FileNotFoundException"></exception>
  55. /// <exception cref="System.IO.IOException"></exception>
  56. /// <exception cref="System.UnauthorizedAccessException"></exception>
  57. void SetAttributes(string path, bool? isHidden, bool? isReadonly, bool? isArchived);
  58. /// <exception cref="System.ArgumentException"></exception>
  59. /// <exception cref="System.IO.FileNotFoundException"></exception>
  60. /// <exception cref="System.IO.IOException"></exception>
  61. /// <exception cref="System.UnauthorizedAccessException"></exception>
  62. void SetDates(string path, DateTime? creationDT, DateTime? lastWriteDT, DateTime? lastAccessDT);
  63. string Name
  64. {
  65. get;
  66. }
  67. /// <exception cref="System.IO.IOException"></exception>
  68. long Size
  69. {
  70. get;
  71. }
  72. /// <exception cref="System.IO.IOException"></exception>
  73. long FreeSpace
  74. {
  75. get;
  76. }
  77. /// <summary>
  78. /// Indicates support for opening named streams (alternate data streams).
  79. /// Named streams are opened using the filename:stream syntax.
  80. /// </summary>
  81. bool SupportsNamedStreams
  82. {
  83. get;
  84. }
  85. }
  86. }