gpt4 book ai didi

python - 创建的目录具有错误的权限(被锁定)

转载 作者:太空宇宙 更新时间:2023-11-03 14:49:27 24 4
gpt4 key购买 nike

我正在使用我正在编写的程序创建一个日志目录:

def create_dir(dirpath):
if not os.path.exists(dirpath):
os.mkdir(dirpath)

当我运行程序时有时它会创建带有锁的目录(根据我的pycharm):

enter image description here enter image description here

我尝试将模式更改为 07770o777(默认),但它仍然会创建锁定文件并强制我使用 sudo 权限来读取或读取删除该文件。有没有一种方法可以在不锁定我的情况下创建目录?

最佳答案

这对我来说非常有效:

dir_path = "path/to/directory/including/directory/name"
if not os.path.exists(os.path.dirname(dir_path)):
os.makedirs(os.path.dirname(dir_path))

关于python - 创建的目录具有错误的权限(被锁定),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45986427/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com