我有没有空白不能重命名的文件(工作文件)。文件名是Evo PROG6001 FSJD0250240 E.PART
,存储在变量file
中。如果我运行os.system('start ' "'" + file + "'")
,它将仅识别单词Evo
并返回Windows cannot find "Evo". Make sure you types the name correctly, and then try again
。 os.system('start ' + file)
也会发生同样的事情。
有没有办法做到这一点?
答案 0 :(得分:2)
我需要使用os.startfile()
并将其指向我之前存储的根目录。
os.startfile(new_folder + '\\' + file)
有效