Add folder location display

This commit is contained in:
Jeremy Wu 2019-07-31 20:11:50 +10:00
parent 0e03b951d4
commit b85632cc99

View File

@ -10,9 +10,9 @@ namespace Wox.Plugin.Folder
[JsonProperty] [JsonProperty]
public string Path { get; set; } public string Path { get; set; }
public string Nickname public string Nickname =>
{ Path.Split(new[] { System.IO.Path.DirectorySeparatorChar }, StringSplitOptions.None)
get { return Path.Split(new[] { System.IO.Path.DirectorySeparatorChar }, StringSplitOptions.None).Last(); } .Last()
} + " (" + System.IO.Path.GetDirectoryName(Path) + ")";
} }
} }