FileSystem.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Text;
  5. namespace Utilities
  6. {
  7. public abstract class FileSystem : IFileSystem
  8. {
  9. public abstract FileSystemEntry GetEntry(string path);
  10. public abstract FileSystemEntry CreateFile(string path);
  11. public abstract FileSystemEntry CreateDirectory(string path);
  12. public abstract void Move(string source, string destination);
  13. public abstract void Delete(string path);
  14. public abstract List<FileSystemEntry> ListEntriesInDirectory(string path);
  15. public abstract Stream OpenFile(string path, FileMode mode, FileAccess access, FileShare share, FileOptions options);
  16. public abstract void SetAttributes(string path, bool? isHidden, bool? isReadonly, bool? isArchived);
  17. public abstract void SetDates(string path, DateTime? creationDT, DateTime? lastWriteDT, DateTime? lastAccessDT);
  18. public List<FileSystemEntry> ListEntriesInRootDirectory()
  19. {
  20. return ListEntriesInDirectory(@"\");
  21. }
  22. public Stream OpenFile(string path, FileMode mode, FileAccess access, FileShare share)
  23. {
  24. return OpenFile(path, mode, access, share, FileOptions.None);
  25. }
  26. public void CopyFile(string sourcePath, string destinationPath)
  27. {
  28. const int bufferLength = 1024 * 1024;
  29. FileSystemEntry sourceFile = GetEntry(sourcePath);
  30. FileSystemEntry destinationFile = GetEntry(destinationPath);
  31. if (sourceFile == null | sourceFile.IsDirectory)
  32. {
  33. throw new FileNotFoundException();
  34. }
  35. if (destinationFile != null && destinationFile.IsDirectory)
  36. {
  37. throw new ArgumentException("Destination cannot be a directory");
  38. }
  39. if (destinationFile == null)
  40. {
  41. destinationFile = CreateFile(destinationPath);
  42. }
  43. Stream sourceStream = OpenFile(sourcePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, FileOptions.SequentialScan);
  44. Stream destinationStream = OpenFile(destinationPath, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite, FileOptions.None);
  45. while (sourceStream.Position < sourceStream.Length)
  46. {
  47. int readSize = (int)Math.Max(bufferLength, sourceStream.Length - sourceStream.Position);
  48. byte[] buffer = new byte[readSize];
  49. sourceStream.Read(buffer, 0, buffer.Length);
  50. destinationStream.Write(buffer, 0, buffer.Length);
  51. }
  52. sourceStream.Close();
  53. destinationStream.Close();
  54. }
  55. public abstract string Name
  56. {
  57. get;
  58. }
  59. public abstract long Size
  60. {
  61. get;
  62. }
  63. public abstract long FreeSpace
  64. {
  65. get;
  66. }
  67. public static string GetParentDirectory(string path)
  68. {
  69. if (path == String.Empty)
  70. {
  71. path = @"\";
  72. }
  73. if (!path.StartsWith(@"\"))
  74. {
  75. throw new ArgumentException("Invalid path");
  76. }
  77. if (path.Length > 1 && path.EndsWith(@"\"))
  78. {
  79. path = path.Substring(0, path.Length - 1);
  80. }
  81. int separatorIndex = path.LastIndexOf(@"\");
  82. return path.Substring(0, separatorIndex + 1);
  83. }
  84. /// <summary>
  85. /// Will append a trailing slash to a directory path if not already present
  86. /// </summary>
  87. /// <param name="path"></param>
  88. /// <returns></returns>
  89. public static string GetDirectoryPath(string path)
  90. {
  91. if (path.EndsWith(@"\"))
  92. {
  93. return path;
  94. }
  95. else
  96. {
  97. return path + @"\";
  98. }
  99. }
  100. }
  101. }