Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MonoIOStat.cs « System.IO « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: caf4ccc6e5c4764636a31c3620ef62c559e51655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// System.IO.MonoIOStat.cs: Idealized structure for file information.
//
// Author:
//   Dan Lewis (dihlewis@yahoo.co.uk)
//
// (C) 2002
//

using System;

namespace System.IO
{
	internal struct MonoIOStat {
		public string Name;
		public FileAttributes Attributes;
		public long Length;
		public long CreationTime;
		public long LastAccessTime;
		public long LastWriteTime;
	}
}