python操作文件库不需要安装其他module,文件操作类库是python语言自身支持的操作. 判定文件是否存在:os.path.isfile(filePath) import os import sys if __name__=='__main__': filePath='d:\\FTP\\HUAWEI\\1.txt' if os.path.isfile(filePath): #os.remove() will remove a file. #os.rmdir() will remove a…