gpt4 book ai didi

Python,open.system 函数 - 文件名中包含空格时出错

转载 作者:行者123 更新时间:2023-12-01 08:50:05 24 4
gpt4 key购买 nike

我正在尝试从系统文件夹中打开文件。

import os

Folder = "C:\\Users\\kasan\\Videos"
File = Folder+'\\'+os.listdir(Folder)[0]

print(File) #C:\Users\kasan\Videos\big bang theoryE12S6.mp4
os.startfile(Folder)#open the folder
os.system(File) #should open the mp4 file

但是 os.system() 向我抛出了一个错误。下面是错误。

'C:\Users\kasan\Videos\big' is not recognized as an internal or external command,
operable program or batch file.

它不是阅读“大爆炸理论E12S6.mp4”,而是仅阅读第一部分。如何克服这个问题?预先感谢您的帮助。

最佳答案

您可以将文件名放在双引号中以保留空格:

os.system('"%s"' % File)

关于Python,open.system 函数 - 文件名中包含空格时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53162212/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com