我正在尝试使用选中的文件在资源管理器中打开一个文件夹。
以下代码生成未找到文件的异常:
System.Diagnostics.Process.Start(
"explorer.exe /select,"
+ listView1.SelectedItems[0].SubItems[1].Text + "\\"
+ listView1.SelectedItems[0].Text);
如何在C#中执行此命令?
答案 0 :(得分:286)
// suppose that we have a test.txt at E:\
string filePath = @"E:\test.txt";
if (!File.Exists(filePath))
{
return;
}
// combine the arguments together
// it doesn't matter if there is a space after ','
string argument = "/select, \"" + filePath +"\"";
System.Diagnostics.Process.Start("explorer.exe", argument);
答案 1 :(得分:59)
使用this method:
Process.Start(String, String)
第一个参数是应用程序(explorer.exe),第二个方法参数是您运行的应用程序的参数。
例如:
CMD中的:
explorer.exe -p
在C#中:
Process.Start("explorer.exe", "-p")
答案 2 :(得分:31)
只需要我的2美分,如果你的文件名包含空格,即“c:\ My File Contains Spaces.txt”,你需要用引号括住文件名,否则explorer会认为其他词是不同的参数。 ..
string argument = "/select, \"" + filePath +"\"";
答案 3 :(得分:31)
如果您的路径包含逗号,则在使用Process.Start(ProcessStartInfo)时,在路径周围添加引号将会起作用。
但是在使用Process.Start(string,string)时它不起作用。似乎Process.Start(string,string)实际上删除了args中的引号。
这是一个适合我的简单示例。
string p = @"C:\tmp\this path contains spaces, and,commas\target.txt";
string args = string.Format("/e, /select, \"{0}\"", p);
ProcessStartInfo info = new ProcessStartInfo();
info.FileName = "explorer";
info.Arguments = args;
Process.Start(info);
答案 4 :(得分:18)
Adrian Hum是对的,请确保在文件名周围加上引号。不是因为它不能像zourtney指出的那样处理空格,而是因为它会将文件名中的逗号(可能还有其他字符)识别为单独的参数。 所以看起来应该像Adrian Hum所说的那样。
string argument = "/select, \"" + filePath +"\"";
答案 5 :(得分:13)
使用“/select,c:\file.txt”
注意/ select后面应该有一个逗号而不是空格..
答案 6 :(得分:10)
Process.Start
explorer.exe
/select
[DllImport("shell32.dll", SetLastError = true)]
public static extern int SHOpenFolderAndSelectItems(IntPtr pidlFolder, uint cidl, [In, MarshalAs(UnmanagedType.LPArray)] IntPtr[] apidl, uint dwFlags);
[DllImport("shell32.dll", SetLastError = true)]
public static extern void SHParseDisplayName([MarshalAs(UnmanagedType.LPWStr)] string name, IntPtr bindingContext, [Out] out IntPtr pidl, uint sfgaoIn, [Out] out uint psfgaoOut);
public static void OpenFolderAndSelectItem(string folderPath, string file)
{
IntPtr nativeFolder;
uint psfgaoOut;
SHParseDisplayName(folderPath, IntPtr.Zero, out nativeFolder, 0, out psfgaoOut);
if (nativeFolder == IntPtr.Zero)
{
// Log error, can't find folder
return;
}
IntPtr nativeFile;
SHParseDisplayName(Path.Combine(folderPath, file), IntPtr.Zero, out nativeFile, 0, out psfgaoOut);
IntPtr[] fileArray;
if (nativeFile == IntPtr.Zero)
{
// Open the folder without the file selected if we can't find the file
fileArray = new IntPtr[0];
}
else
{
fileArray = new IntPtr[] { nativeFile };
}
SHOpenFolderAndSelectItems(nativeFolder, (uint)fileArray.Length, fileArray, 0);
Marshal.FreeCoTaskMem(nativeFolder);
if (nativeFile != IntPtr.Zero)
{
Marshal.FreeCoTaskMem(nativeFile);
}
}
参数奇怪地仅适用于长度小于120个字符的路径。
我必须使用原生的Windows方法才能在所有情况下都能使用它:
::Manager.find(params[:id])
答案 7 :(得分:5)
你需要在Start方法的第二个参数中传递参数(“/ select etc”)。
答案 8 :(得分:5)
string windir = Environment.GetEnvironmentVariable("windir");
if (string.IsNullOrEmpty(windir.Trim())) {
windir = "C:\\Windows\\";
}
if (!windir.EndsWith("\\")) {
windir += "\\";
}
FileInfo fileToLocate = null;
fileToLocate = new FileInfo("C:\\Temp\\myfile.txt");
ProcessStartInfo pi = new ProcessStartInfo(windir + "explorer.exe");
pi.Arguments = "/select, \"" + fileToLocate.FullName + "\"";
pi.WindowStyle = ProcessWindowStyle.Normal;
pi.WorkingDirectory = windir;
//Start Process
Process.Start(pi)
答案 9 :(得分:3)
找不到文件的最可能原因是路径中有空格。例如,它找不到" explorer / select,c:\ space space \ space.txt&#34 ;
只需在路径前后添加双引号,例如;
explorer /select,"c:\space space\space.txt"
或在C#中使用
执行相同操作System.Diagnostics.Process.Start("explorer.exe","/select,\"c:\space space\space.txt\"");
答案 10 :(得分:0)
这可能有点过分,但是我喜欢便捷功能,所以请选择这个:
public static void ShowFileInExplorer(FileInfo file) {
StartProcess("explorer.exe", null, "/select, "+file.FullName.Quote());
}
public static Process StartProcess(FileInfo file, params string[] args) => StartProcess(file.FullName, file.DirectoryName, args);
public static Process StartProcess(string file, string workDir = null, params string[] args) {
ProcessStartInfo proc = new ProcessStartInfo();
proc.FileName = file;
proc.Arguments = string.Join(" ", args);
Logger.Debug(proc.FileName, proc.Arguments); // Replace with your logging function
if (workDir != null) {
proc.WorkingDirectory = workDir;
Logger.Debug("WorkingDirectory:", proc.WorkingDirectory); // Replace with your logging function
}
return Process.Start(proc);
}
这是我用作
static class Extensions
{
public static string Quote(this string text)
{
return SurroundWith(text, "\"");
}
public static string SurroundWith(this string text, string surrounds)
{
return surrounds + text + surrounds;
}
}