gpt4 book ai didi

python - % : 'int' and 'str' 不支持的操作数类型

转载 作者:太空宇宙 更新时间:2023-11-04 10:29:28 24 4
gpt4 key购买 nike

我正在编写一个脚本,该脚本将使用 os.system 获取 Windows 注册表导出。出于某种原因,将文件路径转换为字符串似乎有问题,但我可能弄错了。

from module_locator import module_path
import os
import datetime

myDate = datetime.datetime.now().strftime("%y-%m-%d")
myTime = datetime.datetime.now().strftime("%H:%M")
myDateTime = datetime.datetime.now().strftime("%y-%m-%d %H:%M")

scriptdir = module_path()
logdir = scriptdir + '\\logs\\'
tempdir = scriptdir + '\\temp\\'
regbackupfile = tempdir + "PlexRegistry-" + myDate + ".reg"
PlexDBDir = "C:\\Users\\Administrator\\AppData\\Local\\Plex Media Server"

def main():
#Setting up directories for logs and temp work
if not os.path.exists(logdir):
os.makedirs(logdir)
if not os.path.exists(tempdir):
os.makedirs(tempdir)
os.system('regedit /E %s "HKEY_CURRENT_USER\\Software\\Plex, Inc.\\Plex Media Server"') % regbackupfile
print "All Done. Check it out."


if __name__ == '__main__':
main()

我得到的错误是:

C:\Users\Administrator\Dropbox\Python Dev\Plex Backup>Plex_Backup.py
Traceback (most recent call last):
File "C:\Users\Administrator\Dropbox\Python Dev\Plex Backup\Plex_Backup.py", l
ine 87, in <module>
main()
File "C:\Users\Administrator\Dropbox\Python Dev\Plex Backup\Plex_Backup.py", l
ine 78, in main
os.system('regedit /E %s "HKEY_CURRENT_USER\\Software\\Plex, Inc.\\Plex Medi
a Server"') % regbackupfile
TypeError: unsupported operand type(s) for %: 'int' and 'unicode'

最佳答案

os.system() 返回一个整数,您正在尝试将字符串插值应用到 that:

os.system('...') % regbackupfile

将字符串插值选项移动到字符串参数,然后再将其传递给 os.system():

os.system('...' % regbackupfile)

您可能应该看看使用 subprocess module相反,它允许您在不进行插值的情况下传递参数。

关于python - % : 'int' and 'str' 不支持的操作数类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27722963/

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