Python-删除子文件夹(仅删除子文件夹,不删除其他文件)

时间:2018-10-23 07:58:57

标签: python python-3.x delete-file

我有一个包含子文件夹和一组文本文件的文件夹。我正在尝试使用以下代码删除子文件夹

Path = '/Desktop/foldername/'
folder = 'Path/'
for the_file in os.listdir(folder):
    file_path = os.path.join(folder, the_file)
    try:
        if os.path.isfile(file_path):
            os.unlink(file_path)
        elif os.path.isdir(file_path): shutil.rmtree(file_path)
    except Exception as e:
        print(e)

我不断收到错误文件夹不存在。任何人都可以建议我哪里错了。谢谢。

0 个答案:

没有答案