DopusRT: With the GO command is there a way to pass multiple paths?

DopusRT /acmd go "C:\temp1" newtab

The above works, the path is opened in a new tab, on the last active lister. I am looking to do the same thing with one or more paths, I tried the following but it does not work:

DopusRT /acmd go "C:\temp1", "C:\temp3", "C:\temp3" newtab

I could have sworn this worked at some point.

You can pass a second path with DUALPATH, but that's all, I am afraid.

How about abusing CreateFolder?

This should work:

CreateFolder "C:\temp1" "C:\temp3" "C:\temp3" READAUTO=tab
1 Like

Hmm..Looks interesting I will see how it goes, if nothing I will go with a ForeEach-Object inside my function.

Thanks lxp