其他分享
首页 > 其他分享> > PermissionError: WinError

PermissionError: WinError

作者:互联网

在做git下载代码的时候 第一次成功了 我们在更新的时候  想的时候 要是之前已经存在的 我就把原来的删除 但是会报一个权限的错误解决办法如下

from git.repo import Repo
import os
import sys, stat, errno
import shutil


path = os.path.join(r'E:\00004\code', 'a518')


def handle_remove_read_only(func, path, exc):
    excvalue = exc[1]
    if func in (os.rmdir, os.remove, os.unlink) and excvalue.errno == errno.EACCES:
        os.chmod(path, stat.S_IRWXU | stat.S_IRWXG | stat.S_IRWXO)
        func(path)
    else:
        sys.exit(1)
if os.path.exists(path):
    shutil.rmtree(path, one rror=handle_remove_read_only)

Repo.clone_from('https://gitee.com/xiaoxiaojoe/****', to_path=path, branch='master')

  

标签:WinError,stat,errno,remove,PermissionError,import,path,os
来源: https://www.cnblogs.com/a438842265/p/13038075.html