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
…