python删除空目录_删除python上不为空的目录
所以,我需要清理一个不是空的目录。我创造了以下功能。用于测试我试图删除JDK安装的原因def clean_dir(location):fileList = os.listdir(location)for fileName in fileList:fullpath=os.path.join(location, fileName)if os.path.isfile(fullpath):os.chmod...