我有一个文件列表.每个文件名都包含一个我想删除的数字.然后我想用新文件名重命名文件(没有数字).得到以下错误:
代码如下:
import os, re mypath = "/Users/tikka/Downloads/prank/prank" for f in os.listdir(mypath): print f frenamed = re.sub('\d','',f) print frenamed os.rename(f,frenamed) print f
错误信息
Traceback (most recent call last): File "C:/Python27/ty3.py", line 7, inos.rename(f,frenamed) WindowsError: [Error 2] The system cannot find the file specified
这个问题与Python中的重命名文件不同,因为我的.py与我想要重命名的文件不在同一目录中
您需要在文件中添加您找到的路径.例如:
os.rename(os.path.join(mypath, f), os.path.join(mypath, frenamed))