摘要:
#!/usr/bin/env python3 #-*-coding:utf-8-*- import os class File(object): def __init__(self, pathname): self.pathname = pathname #删除文件 def delectFile(self, filename): #... 阅读全文
摘要:
学习资料:https://docs.python.org/3/library/os.html 需要掌握的例子: 阅读全文