forked from TestableIO/System.IO.Abstractions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileSystemBase.cs
More file actions
31 lines (24 loc) · 843 Bytes
/
Copy pathFileSystemBase.cs
File metadata and controls
31 lines (24 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
namespace System.IO.Abstractions
{
/// <inheritdoc />
[Serializable]
public abstract class FileSystemBase : IFileSystem
{
/// <inheritdoc />
public abstract IDirectory Directory { get; }
/// <inheritdoc />
public abstract IFile File { get; }
/// <inheritdoc />
public abstract IFileInfoFactory FileInfo { get; }
/// <inheritdoc />
public abstract IFileStreamFactory FileStream { get; }
/// <inheritdoc />
public abstract IPath Path { get; }
/// <inheritdoc />
public abstract IDirectoryInfoFactory DirectoryInfo { get; }
/// <inheritdoc />
public abstract IDriveInfoFactory DriveInfo { get; }
/// <inheritdoc />
public abstract IFileSystemWatcherFactory FileSystemWatcher { get; }
}
}