예제 #1
0
 public void Run(string path)
 {
     if (_permissions.CanRun(path) && File.Exists(path))
     {
         Process.Start(path);
     }
 }