gpt4 book ai didi

c# - App.config 相对路径

转载 作者:太空狗 更新时间:2023-10-29 21:11:24 24 4
gpt4 key购买 nike

我有文件夹“图标”。我需要访问相同的权限才能将图标添加到 imageList。我正在使用具有相对路径的 app.config 文件。

<add key="doc" value="..\Icons\_Microsoft Office Excel 97-2003 Worksheet.ico" />

我使用下面的代码将它添加到 imgList ,但是它抛出 System.IO.FileNotFoundException:

smallImageList.Images.Add(Image.FromFile(ConfigurationSettings.AppSettings["doc"]));

这里有什么问题?

最佳答案

尝试添加当前运行路径:

smallImageList.Images.Add(Image.FromFile(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, ConfigurationSettings.AppSettings["doc"])));

关于c# - App.config 相对路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1334394/

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