123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Text;
- namespace Utilities
- {
- public abstract class FileSystem : IFileSystem
- {
- public abstract FileSystemEntry GetEntry(string path);
- public abstract FileSystemEntry CreateFile(string path);
- public abstract FileSystemEntry CreateDirectory(string path);
- public abstract void Move(string source, string destination);
- public abstract void Delete(string path);
- public abstract List<FileSystemEntry> ListEntriesInDirectory(string path);
- public abstract Stream OpenFile(string path, FileMode mode, FileAccess access, FileShare share, FileOptions options);
- public abstract void SetAttributes(string path, bool? isHidden, bool? isReadonly, bool? isArchived);
- public abstract void SetDates(string path, DateTime? creationDT, DateTime? lastWriteDT, DateTime? lastAccessDT);
- public List<FileSystemEntry> ListEntriesInRootDirectory()
- {
- return ListEntriesInDirectory(@"\");
- }
- public virtual List<KeyValuePair<string, ulong>> ListDataStreams(string path)
- {
- FileSystemEntry entry = GetEntry(path);
- List<KeyValuePair<string, ulong>> result = new List<KeyValuePair<string, ulong>>();
- if (!entry.IsDirectory)
- {
- result.Add(new KeyValuePair<string, ulong>("::$DATA", entry.Size));
- }
- return result;
- }
- public Stream OpenFile(string path, FileMode mode, FileAccess access, FileShare share)
- {
- return OpenFile(path, mode, access, share, FileOptions.None);
- }
- public void CopyFile(string sourcePath, string destinationPath)
- {
- const int bufferLength = 1024 * 1024;
- FileSystemEntry sourceFile = GetEntry(sourcePath);
- FileSystemEntry destinationFile = GetEntry(destinationPath);
- if (sourceFile == null | sourceFile.IsDirectory)
- {
- throw new FileNotFoundException();
- }
- if (destinationFile != null && destinationFile.IsDirectory)
- {
- throw new ArgumentException("Destination cannot be a directory");
- }
- if (destinationFile == null)
- {
- destinationFile = CreateFile(destinationPath);
- }
- Stream sourceStream = OpenFile(sourcePath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, FileOptions.SequentialScan);
- Stream destinationStream = OpenFile(destinationPath, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite, FileOptions.None);
- while (sourceStream.Position < sourceStream.Length)
- {
- int readSize = (int)Math.Max(bufferLength, sourceStream.Length - sourceStream.Position);
- byte[] buffer = new byte[readSize];
- sourceStream.Read(buffer, 0, buffer.Length);
- destinationStream.Write(buffer, 0, buffer.Length);
- }
- sourceStream.Close();
- destinationStream.Close();
- }
- public virtual bool Exists(string path)
- {
- try
- {
- GetEntry(path);
- }
- catch (FileNotFoundException)
- {
- return false;
- }
- catch (DirectoryNotFoundException)
- {
- return false;
- }
- return true;
- }
- public abstract string Name
- {
- get;
- }
- public abstract long Size
- {
- get;
- }
- public abstract long FreeSpace
- {
- get;
- }
- public abstract bool SupportsNamedStreams
- {
- get;
- }
- public static string GetParentDirectory(string path)
- {
- if (path == String.Empty)
- {
- path = @"\";
- }
- if (!path.StartsWith(@"\"))
- {
- throw new ArgumentException("Invalid path");
- }
- if (path.Length > 1 && path.EndsWith(@"\"))
- {
- path = path.Substring(0, path.Length - 1);
- }
- int separatorIndex = path.LastIndexOf(@"\");
- return path.Substring(0, separatorIndex + 1);
- }
- /// <summary>
- /// Will append a trailing slash to a directory path if not already present
- /// </summary>
- /// <param name="path"></param>
- /// <returns></returns>
- public static string GetDirectoryPath(string path)
- {
- if (path.EndsWith(@"\"))
- {
- return path;
- }
- else
- {
- return path + @"\";
- }
- }
- }
- }
|