gpt4 book ai didi

python - 使用变量创建目录问题

转载 作者:行者123 更新时间:2023-11-28 20:28:12 28 4
gpt4 key购买 nike

我无法使用定义的变量创建目录,我得到一个,WindowsError: [Error 183] Cannot create a file when that file already exists:

我试过这样的:

import os, ConfigParser
import Tkinter as tk

root = Tk()

exp_no = ""

config = ConfigParser.ConfigParser()
config.read("config.ini")
resultado = config.get("General", "lugar_exp")

en1 = tk.Entry(root, width = 30, background = 'white', textvariable = exp_no)
en1.pack()

os.mkdir(resultado+'/'+en1.get())

最佳答案

我相信

os.mkdir(resultado+'/'+en1.get())

正在运行

os.mkdir(resultado+'/')

因为 en1.get() 可能是空的或者路径的连接错误导致只有 resultado

你能验证 en1.get() 包含什么吗?你可以使用 os.path.join 吗?

关于python - 使用变量创建目录问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6060496/

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