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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309 namespace File360 {
/*
* FileLister provides the UI component for
* interacting with files
*/
public class sealed FileLister {
/*
* filePath setter updates the UI
*/
public string filePath {get; set;}
public FileLister(){
//SDLoad.Begin();
//PhoneLoad.Begin();
GetSDRoot();
//gridScrollViewer = SDGridView.GetFirstLogicalChildByType<ScrollViewer>(false);
//gridScrollViewer.VerticalScrollMode = ScrollMode.Auto;
//LoadMemoryData();
//SettingsTab.Height = Window.Current.Bounds.Width * 2 / 3;
//PasteFlipView.SelectionChanged += PasteBarSelectionChanged;
//AppearancePanel.Begin();
//SubFrame.ContentTransitions = new TransitionCollection { new PaneThemeTransition { Edge = EdgeTransitionLocation.Bottom } };
}
private async void GetSDRoot()
{
if (ApplicationData.Current.LocalSettings.Values.ContainsKey("FolderTokenSettingsKey"))
{
string token = (string)ApplicationData.Current.LocalSettings.Values["FolderTokenSettingsKey"];
// if we do, use it to get the StorageFolder instance
folder = await StorageApplicationPermissions.FutureAccessList.GetFolderAsync(token);
this.Addresser.Reset();
try
{
GetFilesAndFolder(folder);
RootFolder.Text = "3";
IsMusicLibraryOpen = false;
IsVideoLibraryOpen = false;
IsPictureLibraryOpen = false;
}
catch (Exception ex)
{
ShowStatus(ex.Message);
//AI("no sdcard is detected", 2);
}
}
}
public async void GetFilesAndFolder(IStorageFolder anyFolder)
{
await Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.High, async delegate
{
ShowStatus(anyFolder.Path);
if (anyFolder != null)
{
Items = null;
sd.Clear();
SDGridView.ItemsSource = null;
CurrentFolder = anyFolder;
Items = await anyFolder.GetItemsAsync();
if (Items.Count == 0)
{
CurrentFolder = anyFolder;
headerText.Text = anyFolder.Name;
sd.Clear();
switch (anyFolder.Path)
{
case @"D:\Documents":
//display documents missing sad face
break;
case @"D:\Music":
//display music missing sad face
break;
case @"D:\Videos":
//display videos missing sad face
break;
case @"D:\Pictures":
//display pictures missing sad face
break;
default:
EmptyFolderStack.Visibility = Visibility.Visible;
//default options for other empty folders
break;
}
return;
}
//if (GridType)
// SDGridView.ItemsPanel = (ItemsPanelTemplate)Resources["GridViewItemsPanel"];
//else SDGridView.ItemsPanel = (ItemsPanelTemplate)Resources["ListViewItemsPanel"];
else
{
EmptyFolderStack.Visibility = Visibility.Collapsed;
foreach (IStorageItem Data in Items)
{
if (Data.IsOfType(StorageItemTypes.Folder))
{
IStorageFolder Folder;
Folder = (IStorageFolder)Data;
//IReadOnlyList<IStorageItem> item = await Folder.GetItemsAsync();
headerText.Text = anyFolder.Name;
if (CurrentFolder.Path == @"D:\")
{
if (Folder.Name == "Videos") sd.Add(new sdlist(Folder.Name, "o", ""));
else if (Folder.Name == "Pictures") sd.Add(new sdlist(Folder.Name, "f", ""));
else if (Folder.Name == "Music") sd.Add(new sdlist(Folder.Name, "g", ""));
else if (Folder.Name == "Downloads") sd.Add(new sdlist(Folder.Name, "e", ""));
else if (Folder.Name == "Documents") sd.Add(new sdlist(Folder.Name, "n", ""));
else sd.Add(new sdlist(Folder.Name, "h", ""));
}
else sd.Add(new sdlist(Folder.Name, "h", ""));
}
if (Data.IsOfType(StorageItemTypes.File))
{
IStorageFile File = (IStorageFile)Data;
string fn = File.Name;
string fi = File.FileType;
#region FileTypes
if (fi == ".mp3")
{
if (((string)settings.Values["musThumbnail"] == "1"))
{
#region Mp3
//var fileStream = await File.OpenStreamForReadAsync();
//var tagFile = TagLib.File.Create(new StreamFileAbstraction(File.Name, fileStream, fileStream));
//var tags = tagFile.GetTag(TagTypes.Id3v2);
//try
//{
// if (tags.Pictures != null)
// {
// MemoryStream ms = new MemoryStream(tags.Pictures[0].Data.Data);
// WriteableBitmap wm = null;
// WriteableBitmap wwm = await wm.FromStream(ms, Windows.Graphics.Imaging.BitmapPixelFormat.Unknown);
// ms.Dispose();
// ImageBrush im = new ImageBrush();
// im.ImageSource = wwm;
// im.Stretch = Stretch.UniformToFill;
// sd.Add(new sdlist(fn, im, ""));
// #endregion
// }
//}
//catch (IndexOutOfRangeException ex)
//{
// BitmapImage bm = new BitmapImage(new Uri("ms-appx:///Assets/IMG-20150528-WA0003.jpg", UriKind.Absolute));
// ImageBrush im = new ImageBrush();
// im.ImageSource = bm;
// sd.Add(new sdlist(fn, im, ""));
//}
//catch (Exception ex)
//{
// AI(ex.Message, 2);
//}
#endregion
}
else sd.Add(new sdlist(fn, "m"));
}
else if (fi == ".wma")
{
if (((string)settings.Values["musThumbnail"] == "1"))
{ }
#region wma-work in progress
//var fileStream = await File.OpenStreamForReadAsync();
//var tagFile = TagLib.File.Create(new StreamFileAbstraction(File.Name, fileStream, fileStream));
//var tags = tagFile.GetTag(TagTypes.Id3v2);
//try
//{
// if (tags.Pictures != null)
// {
// MemoryStream ms = new MemoryStream(tags.Pictures[0].Data.Data);
// WriteableBitmap wm = null;
// WriteableBitmap wwm = await wm.FromStream(ms, Windows.Graphics.Imaging.BitmapPixelFormat.Unknown);
// ms.Dispose();
// ImageBrush im = new ImageBrush();
// im.ImageSource = wwm;
// im.Stretch = Stretch.UniformToFill;
// sd.Add(new sdlist(fn, im, ""));
// #endregion
// }
//}
//catch (IndexOutOfRangeException ex)
//{
// BitmapImage bm = new BitmapImage(new Uri("ms-appx:///Assets/IMG-20150528-WA0003.jpg", UriKind.Absolute));
// ImageBrush im = new ImageBrush();
// im.ImageSource = bm;
// sd.Add(new sdlist(fn, im, ""));
//}
//catch (Exception ex)
//{
// AI(ex.Message, 2);
//}
#endregion
else sd.Add(new sdlist(fn, "m"));
}
else if (fi == ".docx")
{
sd.Add(new sdlist(fn, "k"));
}
else if (fi == ".png")
{
if (((string)settings.Values["picThumbnail"] == "1"))
await GetThumbnailImageAsync((StorageFile)File, ThumbnailMode.ListView);
else sd.Add(new sdlist(fn, "p"));
}
else if (fi == ".jpg")
{
if (((string)settings.Values["picThumbnail"] == "1"))
await GetThumbnailImageAsync((StorageFile)File, ThumbnailMode.ListView);
else sd.Add(new sdlist(fn, "p"));
}
else if (fi == ".mp4")
{
if (((string)settings.Values["vidThumbnail"] == "1"))
{
try
{
await GetThumbnailImageAsync((StorageFile)File, ThumbnailMode.ListView);
}
catch
{
sd.Add(new sdlist(fn, "v"));
}
}
else sd.Add(new sdlist(fn, "v"));
}
else if (fi == ".mov")
{
if (((string)settings.Values["vidThumbnail"] == "1"))
{
try
{
await GetThumbnailImageAsync((StorageFile)File, ThumbnailMode.ListView);
}
catch
{
sd.Add(new sdlist(fn, "v"));
}
}
else sd.Add(new sdlist(fn, "v"));
}
else if (fi == ".zip")
{
sd.Add(new sdlist(fn, "z"));
}
else if (fi == ".cs")
{
sd.Add(new sdlist(fn, "c"));
}
else if (fi == ".pdf")
{
sd.Add(new sdlist(fn, "b"));
}
else if (fi == ".vcf")
{
sd.Add(new sdlist(fn, "l"));
}
else if (fi == ".doc")
{
sd.Add(new sdlist(fn, "k"));
}
else if (fi == ".xlx")
{
sd.Add(new sdlist(fn, "j"));
}
else if (fi == ".xlsx")
{
sd.Add(new sdlist(fn, "j"));
}
else if (fi == ".7z")
{
sd.Add(new sdlist(fn, "7"));
}
else if (fi == ".xml")
{
sd.Add(new sdlist(fn, "x"));
}
else if (fi == ".txt")
{
sd.Add(new sdlist(fn, "a"));
}
else if (fi == ".rar")
{
sd.Add(new sdlist(fn, "r"));
}
else
{
sd.Add(new sdlist(fn, "i"));
}
#endregion
}
}
}
}
//else AI("This folder contains no items", 2);
SDGridView.ItemsSource = sd;
});
}
}
}