My code is simply as follows:
JavaScript
x
3
1
file = 'C:\Exe\First Version\filename.exe'
2
os.system(file)
3
When I run this program, a Windows error is raised: can't find the file specified.
I found out the problem has to with the whitespace in the middle of “First Version”. How could I find a way to circumvent the problem?
P.S.: what if the variable ‘file’ is being passed as an argument into another function?
Advertisement
Answer
Putting quotes around the path will work:
JavaScript
1
3
1
file = 'C:\Exe\First Version\filename.exe'
2
os.system('"' + file + '"')
3
but a better solution is to use the subprocess
module instead:
JavaScript
1
4
1
import subprocess
2
file = 'C:\Exe\First Version\filename.exe'
3
subprocess.call([file])
4