-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathTrackedMove.cs
More file actions
35 lines (34 loc) · 981 Bytes
/
TrackedMove.cs
File metadata and controls
35 lines (34 loc) · 981 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
32
33
34
35
class TrackedMove
{
public TrackedMove(string temp,
string target,
string? exe,
string? arguments,
bool canKill,
Process? process,
string? group,
string extension,
bool killLockingProcess = false)
{
Temp = temp;
Target = target;
Exe = exe;
Arguments = arguments;
Name = Path.GetFileNameWithoutExtension(Path.GetFileNameWithoutExtension(target));
Extension = extension;
CanKill = canKill;
Process = process;
Group = group;
KillLockingProcess = killLockingProcess;
}
public string Extension { get; }
public string Name { get; }
public string Temp { get; }
public string Target { get; }
public string? Exe { get; }
public string? Arguments { get; }
public bool CanKill { get; }
public Process? Process { get; set; }
public string? Group { get; }
public bool KillLockingProcess { get; }
}