BExplorer.Shell.ShellView.StartProcessInCurrentDirectory C# (CSharp) Method

StartProcessInCurrentDirectory() private method

private StartProcessInCurrentDirectory ( IListItemEx item ) : void
item IListItemEx
return void
    private void StartProcessInCurrentDirectory(IListItemEx item) {
      Process.Start(new ProcessStartInfo() {
        FileName = item.ParsingName,
        WorkingDirectory = this.CurrentFolder.ParsingName
      });
    }
ShellView