开发者

deletion of folders

how can i delete a folde开发者_运维百科r using python script?and what are the return values??


If you want to delete a folder that's empty use os.rmdir:

import os
os.rmdir('/mypath')

If you want to delete a folder that's not empty use shutil.rmtree:

import shutil  
shutil.rmtree('/mypath')


you can use os.rmdir() to remove a directory. To remove a directory tree recursively, you can use shutil.rmtree. If you know that you already have empty directory nodes, you can also check out os.removedirs()

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜