如何用Python打开文件名中的空格?

时间:2019-02-06 19:27:04

标签: python

我有没有空白不能重命名的文件(工作文件)。文件名是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 againos.system('start ' + file)也会发生同样的事情。

有没有办法做到这一点?

1 个答案:

答案 0 :(得分:2)

我需要使用os.startfile()并将其指向我之前存储的根目录。

os.startfile(new_folder + '\\' + file)有效