gpt4 book ai didi

Python-Windows错误: [Error 2] The system cannot find the file specified

转载 作者:太空宇宙 更新时间:2023-11-03 21:01:08 26 4
gpt4 key购买 nike

我有一个装满 pdf 文件的文件夹。我正在尝试删除文件名中的所有空格并用下划线替换它们。这是我到目前为止所拥有的:

import os, sys

folder = path to folder
FileList = os.listdir(folder)

for files in FileList:
if ' ' in files:
NewName = files.replace(" ", "_")
os.rename(files, NewName)

当我运行此脚本时,出现以下错误:

WindowsError: [Error 2] The system cannot find the file specified

我猜有一个非常简单的修复方法,但我已经查遍了,但找不到适合我的解决方案。

感谢您的帮助!

最佳答案

...

os.rename(os.path.join(folder, files), os.path.join(folder, NewName))

关于Python-Windows错误: [Error 2] The system cannot find the file specified,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55697281/

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