open choose files from file explorer python

56

python open file from explorer -

import sys
path = r'C:\Program Files (x86)\IronPython 2.7\Lib'
sys.path.append(path)

import subprocess
subprocess.Popen('explorer "C:\temp"')

Comments

Submit
0 Comments