I don’t have any Mac OSx or Linux machine, but I want to implement the functionality like opening an explorer from a selected file path.
for example
import subprocess
subprocess.Popen('explorer "E://temp//"')
the above code opens windows explorer for a specified path, how to do it for Mac or Linux ?
It looks like you can use
xdg-openon linux andopenon OS-X.e.g.
or