Using subprocess I want to open Windows File Explorer. Then wait for 1 second and close it:
import subprocess, time
subprocess.Popen(r'explorer /select,"D:\tmp\temp"')
time.sleep(1)
How to close File Explorer?
Using subprocess I want to open Windows File Explorer. Then wait for 1 second and close it:
import subprocess, time
subprocess.Popen(r'explorer /select,"D:\tmp\temp"')
time.sleep(1)
How to close File Explorer?