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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
| unit Unit1;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs,
FMX.ListBox, FMX.Layouts, FMX.StdCtrls, FMX.Objects, FMX.Edit, FMX.Effects,
FMX.Controls.Presentation;
type
TForm1 = class(TForm)
ToolBar1: TToolBar;
ToolBar2: TToolBar;
Image1: TImage;
Image2: TImage;
Image3: TImage;
Edit1: TEdit;
Location: TLabel;
ListBox1: TListBox;
Undo: TButton;
Save: TButton;
NewFolder: TButton;
procedure FormCreate(Sender: TObject);
procedure FormKeyUp(Sender: TObject; var Key: Word; var KeyChar: Char;
Shift: TShiftState);
procedure UndoClick(Sender: TObject);
procedure ListBox1Click(Sender: TObject);
procedure ListBox1ItemClick(const Sender: TCustomListBox;
const Item: TListBoxItem);
procedure NewFolderClick(Sender: TObject);
private
procedure AddListItem(list: array of string; itype: string);
procedure TotalWork(path_tr: string; clear: boolean);
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.fmx}
uses
System.IOUtils, System.Generics.Collections, Generics.Defaults,
FMX.Helpers.Android, Androidapi.JNI.JavaTypes, Androidapi.Helpers,
Androidapi.JNI.GraphicsContentViewText, Androidapi.JNI.Webkit;
var
path: string; // Здесь будем хранить путь
ItemsCheck: array of string; // Массив с помеченными пунктами
function CompareLowerStr(const Left, Right: string): Integer;
begin
Result := CompareStr(AnsiLowerCase(Left), AnsiLowerCase(Right));
end;
{Процедура для вставки массивов в ListBox}
procedure TForm1.AddListItem(list: array of string; itype: string);
var
c: integer;
LItem: TListBoxItem;
begin
ListBox1.BeginUpdate;
for c := 0 to Length(list) - 1 do
begin
LItem := TListBoxItem.Create(ListBox1);
LItem.ItemData.Text := ExtractFileName(list[c]);
LItem.ItemData.Detail := list[c]; // Помещаем полный путь в Detail
LItem.TagString := itype;
ListBox1.AddObject(LItem);
end;
ListBox1.EndUpdate;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
// Корень устройства
path := '/';
TotalWork(path, False);
end;
procedure TForm1.FormKeyUp(Sender: TObject; var Key: Word; var KeyChar: Char;
Shift: TShiftState);
begin
if Key = vkHardwareBack then
begin
if path <> '/' then
begin
UndoClick(Self);
Key := 0;
end;
end;
end;
procedure TForm1.ListBox1Click(Sender: TObject);
begin
end;
{Клик по Item'у, вперёд}
procedure TForm1.ListBox1ItemClick(const Sender: TCustomListBox;
const Item: TListBoxItem);
var
ExtFile: string;
mime: JMimeTypeMap;
ExtToMime: JString;
Intent: JIntent;
begin
// Сохраняем выбранный путь
path := Item.ItemData.Detail;
if Item.TagString = 'folder' then
begin
if TDirectory.Exists(path) then
begin
TotalWork(path, True);
end
else
begin
ListBox1.Items.Delete(Item.Index);
ShowMessage('Папка не найдена');
end;
end
else if Item.TagString = 'file' then
begin
try
//Определяем расширение файла и его mime тип
ExtFile := AnsiLowerCase(StringReplace(TPath.GetExtension(path), '.', '',[]));
mime := TJMimeTypeMap.JavaClass.getSingleton();
ExtToMime := mime.getMimeTypeFromExtension(StringToJString(ExtFile));
//Запрашиваем открытие файла
Intent := TJIntent.Create;
Intent.setAction(TJIntent.JavaClass.ACTION_VIEW);
Intent.setDataAndType(StrToJURI('file:' + path), ExtToMime);
SharedActivity.startActivity(Intent);
except
ShowMessage('Невозможно открыть файл!');
end;
end;
end;
procedure TForm1.NewFolderClick(Sender: TObject);
var
newpath: string;
newfile: TFileStream;
begin
if (Length(Location.Text) = 0) OR (Location.Text = ' ') then begin
Location.Text := 'Введите имя!';
end;
newpath := path + PathDelim + Location.Text;
if Location.TagString = 'CreateFolder' then
begin
if TDirectory.Exists(newpath) then begin
ShowMessage('Папка существует!');
end ;
begin
TDirectory.CreateDirectory(newpath); // Создаём папку
TotalWork(path, True); // Обновляем список
end;
end;
end;
procedure TForm1.UndoClick(Sender: TObject);
begin
// Определяем предыдущую папку
path := ExtractFileDir(path);
if path = '/' then path := '/'
else path := path;
TotalWork(path, True);
end;
{Основа для обработки перемещений по файлам}
procedure TForm1.TotalWork(path_tr: string; clear: boolean);
var
folders, files: TStringDynArray;
begin
// Выводим текущий путь
Location.Text := path_tr;
//*****Папки*****
// Ищем папки
folders := TDirectory.GetDirectories(path_tr);
// Сортируем папки
TArray.Sort<string>(folders, TComparer<string>.Construct(CompareLowerStr));
if clear then
begin
// Очищаем Листбокс
ListBox1.Clear;
end;
// Заполняем Листбокс списком отсортированных папок
AddListItem(folders, 'folder');
//***************
//*****Файлы*****
// Ищем файлы
files := TDirectory.GetFiles(path_tr);
// Сортируем файлы
TArray.Sort<string>(files, TComparer<string>.Construct(CompareLowerStr));
// Дополняем Листбокс списком отсортированных файлов
AddListItem(files, 'file');
//***************
end;
end. |