gpt4 book ai didi

Python 无法打开 C :\Windows\System32\oobe\Info\backgrounds 中的文件

转载 作者:可可西里 更新时间:2023-11-01 14:13:52 29 4
gpt4 key购买 nike

Windows 7 x64,Python 2.7。试图制作一个脚本来自动更改登录背景。我正在使用 pygame,它是 python 的 SDL 包装器,但代码应该是不言自明的:

import pygame
import os
image = pygame.image.load(os.path.normpath("C:/Users/nivekuil/Desktop/backgroundDefault.jpg"))
surface = pygame.Surface((1366,768))
surface.fill((255,255,255))
surface.blit(image, (0,0))
surface = pygame.image.save(surface, os.path.normpath("C:/Windows/System32/oobe/Info/backgrounds/backgroundDefault.jpg"))

返回错误:

Traceback (most recent call last):
File "C:/Users/nivekuil/Documents/background.py", line 8, in <module>
surface = pygame.image.save(surface, os.path.normpath("C:/Windows/System32/oobe/Info/backgrounds/backgroundDefault.jpg"))
error: SaveJPEG: could not open C:\Windows\System32\oobe\Info\backgrounds\backgroundDefault.jpg

我不认为这是 pygame 的问题,因为如果我将它保存到 Desktop 之类的地方,它就可以正常工作。我还以管理员身份运行 IDLE,并且我还在任务计划程序中将程序作为任务运行,并选中了“以最高权限运行”。

最佳答案

找到解决方案!根据this文章中,我将/System32/替换为/Sysnative/并且一切正常。

关于Python 无法打开 C :\Windows\System32\oobe\Info\backgrounds 中的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13115425/

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