MonoIOStat.cs 405 B

12345678910111213141516171819202122
  1. //
  2. // System.IO.MonoIOStat.cs: Idealized structure for file information.
  3. //
  4. // Author:
  5. // Dan Lewis ([email protected])
  6. //
  7. // (C) 2002
  8. //
  9. using System;
  10. namespace System.IO
  11. {
  12. internal struct MonoIOStat {
  13. public string Name;
  14. public FileAttributes Attributes;
  15. public long Length;
  16. public long CreationTime;
  17. public long LastAccessTime;
  18. public long LastWriteTime;
  19. }
  20. }