MemoryFileSystemEntry.cs 639 B

123456789101112131415161718
  1. using System;
  2. using System.IO;
  3. namespace Quadarax.Foundation.Core.IO.FileSystem.Memory
  4. {
  5. internal abstract class MemoryFileSystemEntry
  6. {
  7. public string Name { get; set; } = string.Empty;
  8. public string FullName { get; set; } = string.Empty;
  9. public DateTime CreationTime { get; set; }
  10. public DateTime LastAccessTime { get; set; }
  11. public DateTime LastWriteTime { get; set; }
  12. public FileAttributes Attributes { get; set; }
  13. public UnixFileMode UnixFileMode { get; set; }
  14. public bool IsSymbolicLink { get; set; }
  15. public string SymbolicLinkTarget { get; set; } = string.Empty;
  16. }
  17. }