mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02:00
added share folder
This commit is contained in:
@@ -44,7 +44,7 @@ namespace Wox.Plugin.Folder
|
|||||||
var results = GetUserFolderResults(query);
|
var results = GetUserFolderResults(query);
|
||||||
|
|
||||||
string search = query.Search.ToLower();
|
string search = query.Search.ToLower();
|
||||||
if (_driverNames != null && !_driverNames.Any(search.StartsWith))
|
if (!IsDriveOrSharedFolder(search))
|
||||||
return results;
|
return results;
|
||||||
|
|
||||||
results.AddRange(QueryInternal_Directory_Exists(query));
|
results.AddRange(QueryInternal_Directory_Exists(query));
|
||||||
@@ -58,6 +58,26 @@ namespace Wox.Plugin.Folder
|
|||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static bool IsDriveOrSharedFolder(string search)
|
||||||
|
{
|
||||||
|
if (search.StartsWith(@"\\"))
|
||||||
|
{ // share folder
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_driverNames != null && _driverNames.Any(search.StartsWith))
|
||||||
|
{ // normal drive letter
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_driverNames == null && search.Length > 2 && char.IsLetter(search[0]) && search[1] == ':')
|
||||||
|
{ // when we don't have the drive letters we can try...
|
||||||
|
return true; // we don't know so let's give it the possibility
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
private Result CreateFolderResult(string title, string path, string queryActionKeyword)
|
private Result CreateFolderResult(string title, string path, string queryActionKeyword)
|
||||||
{
|
{
|
||||||
return new Result
|
return new Result
|
||||||
|
|||||||
Reference in New Issue
Block a user