2013年6月26日
摘要: >>> import os>>> for a in ('c','b'):... os.path.join('m',a)...'m/c''m/b' 阅读全文
posted @ 2013-06-26 10:43 语辰 阅读(132) 评论(0) 推荐(0) 编辑
摘要: >>> help(shutil.rmtree)Help on function rmtree in module shutil:rmtree(path, ignore_errors=False, onerror=None) Recursively delete a directory tree. If ignore_errors is set, errors are ignored; otherwise, if onerror is set, it is called to handle the error with arguments (func, path, exc_in 阅读全文
posted @ 2013-06-26 09:57 语辰 阅读(1228) 评论(0) 推荐(0) 编辑