Open Folder and Select multiple files
- by Vytas999
In C# I want to open explorer and in this explorer window must be selected some files. I do this like that:
string fPath = newShabonFilePath;
string arg = @"/select, ";
int cnt = filePathes.Count;
foreach (string s in filePathes)
{
if(cnt == 1)
arg = arg + s;
else
{
arg = arg + s + ",";
}
cnt--;
}
System.Diagnostics.Process.Start("explorer.exe", arg);
But only the last file of "arg" is selected. How to make that all files of arg would be selected, when explorer window is opened..?