python-连接到FTP后删除所有文件和文件夹
发布时间:2022-05-23 15:54:53 185
相关标签: # node.js
我想通过FTP连接到一个地址,然后删除所有内容。目前我正在使用此代码:
from ftplib import FTP
import shutil
import os
ftp = FTP('xxx.xxx.xxx.xxx')
ftp.login("admin", "admin")
for ftpfile in ftp.nlst():
if os.path.isdir(ftpfile)== True:
shutil.rmtree(ftpfile)
else:
os.remove(ftpfile)
我的问题是,当他试图删除第一个文件时,我总是会遇到以下错误:
os.remove(ftpfile)
WindowsError: [Error 2] The system cannot find the file specified: somefile.sys
有人知道为什么吗?
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报