diff --git a/SparkleShare/Windows/SparkleController.cs b/SparkleShare/Windows/SparkleController.cs index 249a8668..ed9a65f1 100644 --- a/SparkleShare/Windows/SparkleController.cs +++ b/SparkleShare/Windows/SparkleController.cs @@ -178,11 +178,7 @@ namespace SparkleShare { public override void OpenFolder (string path) { - Process process = new Process (); - process.StartInfo.FileName = "explorer"; - process.StartInfo.Arguments = path; - - process.Start (); + Process.Start (path); }