回答:
Process.Start(String, String)
最初の引数はアプリケーション(explorer.exe)で、2番目のメソッド引数は実行するアプリケーションの引数です。
例えば:
CMD:
explorer.exe -p
C#の場合:
Process.Start("explorer.exe", "-p")
// 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);
パスにカンマが含まれている場合、Process.Start(ProcessStartInfo)を使用すると、パスを引用符で囲むことができます。
ただし、Process.Start(string、string)を使用する場合は機能しません。Process.Start(string、string)は実際には引数内の引用符を削除するようです。
ここに私のために働く簡単な例があります。
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);
ファイル名にスペースが含まれている場合、つまり「c:\ My File Contains Spaces.txt」のように2セントの価値がある場合、ファイル名を引用符で囲む必要があります。
string argument = "/select, \"" + filePath +"\"";
サミュエル・ヤンの答えは私をつまずかせました、ここに私の3セントの価値があります。
Adrian Humは正しいです。ファイル名は引用符で囲んでください。zourtneyが指摘したようにスペースを処理できないためではなく、ファイル名内のコンマ(およびその他の文字)を個別の引数として認識するためです。したがって、Adrian Humが示唆したように見えるはずです。
string argument = "/select, \"" + filePath +"\"";
filePath
が含ま"
れていないことを確認してください。この文字はWindowsシステムでは明らかに違法ですが、他のすべてのシステム(POSIXishシステムなど)では許可されているため、移植性が必要な場合はさらに多くのコードが必要です。
引数とともにProcess.Start
on explorer.exe
を使用すると、/select
奇妙なことに、パスが120文字未満の場合にのみ機能します。
すべての場合に機能させるには、ネイティブのWindowsメソッドを使用する必要がありました。
[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);
}
}
「/select,c:\file.txt」を使用します
スペースの代わりに/ selectの後にコンマがあるはずです。
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)
少々やり過ぎかもしれませんが、私は便利な機能が好きなので、これを取り上げます。
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);
}
これは私が<string> .Quote()として使用する拡張関数です:
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;
}
}