For more clearly , i have text like this
Code: Select all
e:\folder1
e:\folder2\subfolder3
e:\folder4\subfolder5
i know how to do that with files (by using "flatview" in scripting) , like this
Code: Select all
$content = <clipboard>;
$content = "$content" . <crlf>;
$files = "";
foreach($entry, $content, <crlf>, "e")
{
if (exists($entry))
{
$files = $files . $entry . ";";
}
}
$files = $files . "?* /n /:flat";
goto $files;
Any help would be much appreciated