@@ -215,7 +215,7 @@ private List<Result> Commands()
215
215
Action = c =>
216
216
{
217
217
{
218
- System . Diagnostics . Process . Start ( "explorer.exe" , "shell:mycomputerfolder" ) ;
218
+ context . API . OpenDirectory ( "shell:mycomputerfolder" ) ;
219
219
}
220
220
221
221
return true ;
@@ -230,7 +230,7 @@ private List<Result> Commands()
230
230
Action = c =>
231
231
{
232
232
{
233
- System . Diagnostics . Process . Start ( "explorer.exe" , "shell:desktop" ) ;
233
+ context . API . OpenDirectory ( "shell:desktop" ) ;
234
234
}
235
235
236
236
return true ;
@@ -245,7 +245,7 @@ private List<Result> Commands()
245
245
Action = c =>
246
246
{
247
247
{
248
- System . Diagnostics . Process . Start ( "explorer.exe" , "shell:Libraries" ) ;
248
+ context . API . OpenDirectory ( "shell:Libraries" ) ;
249
249
}
250
250
251
251
return true ;
@@ -260,7 +260,7 @@ private List<Result> Commands()
260
260
Action = c =>
261
261
{
262
262
{
263
- System . Diagnostics . Process . Start ( "explorer.exe" , "shell:My Pictures" ) ;
263
+ context . API . OpenDirectory ( "shell:My Pictures" ) ;
264
264
}
265
265
266
266
return true ;
@@ -275,7 +275,7 @@ private List<Result> Commands()
275
275
Action = c =>
276
276
{
277
277
{
278
- System . Diagnostics . Process . Start ( "explorer.exe" , "shell:My Video" ) ;
278
+ context . API . OpenDirectory ( "shell:My Video" ) ;
279
279
}
280
280
281
281
return true ;
@@ -290,7 +290,7 @@ private List<Result> Commands()
290
290
Action = c =>
291
291
{
292
292
{
293
- System . Diagnostics . Process . Start ( "explorer.exe" , "shell:Personal" ) ;
293
+ context . API . OpenDirectory ( "shell:Personal" ) ;
294
294
}
295
295
296
296
return true ;
@@ -305,7 +305,7 @@ private List<Result> Commands()
305
305
Action = c =>
306
306
{
307
307
{
308
- System . Diagnostics . Process . Start ( "explorer.exe" , "shell:My Music" ) ;
308
+ context . API . OpenDirectory ( "shell:My Music" ) ;
309
309
}
310
310
311
311
return true ;
@@ -335,7 +335,7 @@ private List<Result> Commands()
335
335
Action = c =>
336
336
{
337
337
{
338
- System . Diagnostics . Process . Start ( "explorer.exe" , "shell:downloads" ) ;
338
+ context . API . OpenDirectory ( "shell:downloads" ) ;
339
339
}
340
340
341
341
return true ;
@@ -373,7 +373,7 @@ private List<Result> Commands()
373
373
Action = c =>
374
374
{
375
375
{
376
- System . Diagnostics . Process . Start ( "explorer.exe" , "shell:RecycleBinFolder" ) ;
376
+ context . API . OpenDirectory ( "shell:RecycleBinFolder" ) ;
377
377
}
378
378
379
379
return true ;
0 commit comments