f =open('output.txt','w')
f.write(str)
f.colse()
os.getcwd()取得当前工作目录
os.path.abspath('memo.txt')取得文件的绝对路径
os.path.exists('memo.txt')判断文件或目录是否存在
os.path.isdir('memo.txt')检查是否为目录
os.path.isfile('memo.txt')检查是否为文件
os.listdir(cwd)返回指定目录下的文件和目录列表
os.path.join(目录,文件)将文件和目录拼接成完成路径
os.walk() 用于通过在目录树中游走输出在目录中的文件名,向上或者向下。
网友评论