-
-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathFileSystemType.cs
More file actions
47 lines (40 loc) · 1.05 KB
/
FileSystemType.cs
File metadata and controls
47 lines (40 loc) · 1.05 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// <copyright file="FileSystemType.cs" company="Fubar Development Junker">
// Copyright (c) Fubar Development Junker. All rights reserved.
// </copyright>
namespace TestFtpServer.Configuration
{
/// <summary>
/// The file system to use.
/// </summary>
public enum FileSystemType
{
/// <summary>
/// The System.IO based file system.
/// </summary>
SystemIO,
/// <summary>
/// A file system that uses the native Linux API.
/// </summary>
Unix,
/// <summary>
/// In-Memory file system.
/// </summary>
InMemory,
/// <summary>
/// Google Drive for a user.
/// </summary>
GoogleDriveUser,
/// <summary>
/// Google Drive for a service.
/// </summary>
GoogleDriveService,
/// <summary>
/// Amazon S3 file system.
/// </summary>
AmazonS3,
/// <summary>
/// Azure Blob Storage file system.
/// </summary>
AzureBlobStorage,
}
}