mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Use default Windows file handler
This commit is contained in:
parent
5cc6d866ea
commit
fdce8e2f1b
@ -56,7 +56,6 @@ namespace Wabbajack
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static void OpenWebsite(Uri url)
|
public static void OpenWebsite(Uri url)
|
||||||
{
|
{
|
||||||
Process.Start(new ProcessStartInfo("cmd.exe", $"/c start {url}")
|
Process.Start(new ProcessStartInfo("cmd.exe", $"/c start {url}")
|
||||||
@ -67,13 +66,14 @@ namespace Wabbajack
|
|||||||
|
|
||||||
public static void OpenFolder(AbsolutePath path)
|
public static void OpenFolder(AbsolutePath path)
|
||||||
{
|
{
|
||||||
Process.Start(new ProcessStartInfo(KnownFolders.Windows.Combine("explorer.exe").ToString(), path.ToString())
|
Process.Start(new ProcessStartInfo()
|
||||||
{
|
{
|
||||||
CreateNoWindow = true,
|
FileName = path.ToString(),
|
||||||
|
UseShellExecute = true,
|
||||||
|
Verb = "open"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public static AbsolutePath OpenFileDialog(string filter, string initialDirectory = null)
|
public static AbsolutePath OpenFileDialog(string filter, string initialDirectory = null)
|
||||||
{
|
{
|
||||||
OpenFileDialog ofd = new OpenFileDialog();
|
OpenFileDialog ofd = new OpenFileDialog();
|
||||||
|
Loading…
Reference in New Issue
Block a user