我正在编写一个快速脚本,它将更改位于目录中的每个 excel 文件的名称:
[...]
for file_ in os.listdir(path):
if 'Analytics Android' in file_:
os.rename(file_, 'Android Orders.xlsx')
但是,我收到一个错误:函数[Error 2] The system cannot find the file specified.
不应该rename
将名称更改为第二个参数吗?