📌  相关文章
📜  如果存在 python 删除目录 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:28.857000             🧑  作者: Mango

代码示例2
import os
import shutil

dirpath = os.path.join('dataset3', 'dataset')
if os.path.exists(dirpath) and os.path.isdir(dirpath):
    shutil.rmtree(dirpath)