Answers:
为什么不Process.Start(@"c:\test");
呢?
Start(dir)
和之间的另一个区别Start("explorer.exe", dir)
是,前者足够聪明,可以将现有窗口聚焦(dir
如果有),而后者每次都会打开一个新窗口。
这应该工作:
Process.Start(@"<directory goes here>")
或者,如果您想要一种运行程序/打开文件和/或文件夹的方法:
private void StartProcess(string path)
{
ProcessStartInfo StartInformation = new ProcessStartInfo();
StartInformation.FileName = path;
Process process = Process.Start(StartInformation);
process.EnableRaisingEvents = true;
}
然后调用该方法,并在括号中放置文件和/或文件夹的目录或应用程序的名称。希望这对您有所帮助!
您可以使用System.Diagnostics.Process.Start
。
或者直接将WinApi与以下类似的东西一起使用,这将启动explorer.exe。您可以对ShellExecute使用第四个参数来为其指定起始目录。
public partial class Window1 : Window
{
public Window1()
{
ShellExecute(IntPtr.Zero, "open", "explorer.exe", "", "", ShowCommands.SW_NORMAL);
InitializeComponent();
}
public enum ShowCommands : int
{
SW_HIDE = 0,
SW_SHOWNORMAL = 1,
SW_NORMAL = 1,
SW_SHOWMINIMIZED = 2,
SW_SHOWMAXIMIZED = 3,
SW_MAXIMIZE = 3,
SW_SHOWNOACTIVATE = 4,
SW_SHOW = 5,
SW_MINIMIZE = 6,
SW_SHOWMINNOACTIVE = 7,
SW_SHOWNA = 8,
SW_RESTORE = 9,
SW_SHOWDEFAULT = 10,
SW_FORCEMINIMIZE = 11,
SW_MAX = 11
}
[DllImport("shell32.dll")]
static extern IntPtr ShellExecute(
IntPtr hwnd,
string lpOperation,
string lpFile,
string lpParameters,
string lpDirectory,
ShowCommands nShowCmd);
}
这些声明来自pinvoke.net网站。
Process.Start("explorer.exe" , @"C:\Users");
我必须使用它,另一种仅指定tgt dir的方法将在应用程序终止时关闭资源管理器窗口。
Access denied
例外的唯一答案。
Process.Start("calc.exe");
将运行计算器。您可以将完整路径传递给可执行文件,然后它将运行它。