python 生成、删除、拷贝目录

1. 生成目录

函数原型:distutils.dir_util.mkpath(name[, mode=0777verbose=0dry_run=0])

from distutils import dir_util
dir_util.mkpath("new_dir")

2. 删除目录

函数原型:distutils.dir_util.remove_tree(directory[, verbose=0dry_run=0])

from distutils import dir_util
dir_util.remove_tree(del_dir)

3. 拷贝目录

函数原型:distutils.dir_util.copy_tree(srcdst[, preserve_mode=1preserve_times=1preserve_symlinks=0update=0verbose=0dry_run=0])

from distutils import dir_util
dir_util.copy_tree("del", "del_copy")

 





本文转自jihite博客园博客,原文链接:http://www.cnblogs.com/kaituorensheng/p/4498788.html,如需转载请自行联系原作者


上一篇:cxf整合spring实现webservice


下一篇:配置druid内置的log实现