-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFileOperator.cs
80 lines (69 loc) · 1.71 KB
/
FileOperator.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Microsoft.VisualBasic.FileIO;
using static System.Windows.Forms.ListView;
namespace FileExplorer
{
public class FileOperator
{
private ListViewItem[] selectedItems;
public FileOperator()
{
}
public void SelectFiles(ListViewItem[] selectedItems)
{
this.selectedItems = selectedItems;
}
public void PasteFile(string pathToPaste)
{
Task copyTask = new Task( () => Paste(pathToPaste) );
copyTask.Start();
}
private void Paste(string pathToPaste)
{
if (selectedItems != null)
{
foreach (ListViewFileItem file in selectedItems)
{
if (file.Attributes.HasFlag(FileAttributes.Directory))
{
FileSystem.CopyDirectory(file.Name, Path.Combine(pathToPaste, file.Text), UIOption.AllDialogs, UICancelOption.DoNothing);
}
else
{
FileSystem.CopyFile(file.Name, Path.Combine(pathToPaste, file.Text), UIOption.AllDialogs, UICancelOption.DoNothing);
}
}
}
}
public void DeleteFile(ListViewFileItem[] files)
{
Task deleteTask = new Task( () => Delete(files) );
deleteTask.Start();
}
private void Delete(ListViewFileItem[] files)
{
foreach(ListViewFileItem file in files)
{
if (file.Attributes.HasFlag(FileAttributes.Directory))
{
FileSystem.DeleteDirectory(file.Name, UIOption.AllDialogs, RecycleOption.SendToRecycleBin);
}
else
{
FileSystem.DeleteFile(file.Name, UIOption.AllDialogs, RecycleOption.SendToRecycleBin);
}
}
}
public void OpenFile(string filePath)
{
Process.Start(filePath);
}
}
}