forked from files-community/Files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileOperationType.cs
56 lines (47 loc) · 1.17 KB
/
FileOperationType.cs
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
48
49
50
51
52
53
54
55
56
using System;
namespace Files.Enums
{
/// <summary>
/// Type of operation on Files filesystem that took place
/// </summary>
[Flags]
public enum FileOperationType : byte
{
/// <summary>
/// An item has been created
/// </summary>
CreateNew = 0,
/// <summary>
/// An item has been renamed
/// </summary>
Rename = 1,
/// <summary>
/// An item has been copied to destination
/// </summary>
Copy = 3,
/// <summary>
/// An item has been moved to destination
/// </summary>
Move = 4,
/// <summary>
/// An archive has been extracted
/// </summary>
Extract = 5,
/// <summary>
/// An item has been recycled
/// </summary>
Recycle = 6,
/// <summary>
/// An item has been restored from Recycle Bin
/// </summary>
Restore = 7,
/// <summary>
/// A item has been deleted
/// </summary>
Delete = 8,
/// <summary>
/// A link to an item has been created
/// </summary>
CreateLink = 9,
}
}