有重新创建文件夹的脚本:
# Remove folder (if exists) with all files
if os.path.isdir(str(os.path.realpath('..') + "\\my_folder")):
shutil.rmtree(os.path.realpath('..') + "\\my_folder", ignore_errors=True)
# Create new folder
os.mkdir(os.path.realpath('..') + "\\my_folder")
这几乎总是有效,但在某些情况下(在创建步骤)我得到
WindowsError: [Error 5] Access is denied: 'C:\\Path\\To\\my_folder'
什么可能导致此错误,我该如何避免它?