gpt4 book ai didi

c# - 确定应用程序根目录的最佳方法是什么?

转载 作者:IT王子 更新时间:2023-10-29 03:50:26 24 4
gpt4 key购买 nike

我需要获取应用程序根目录中的所有 dll。最好的方法是什么?

string root = Application.StartupPath;

或者,

string root = new FileInfo(Assembly.GetExecutingAssembly().Location).FullName;

然后,

Directory.GetFiles(root, "*.dll");

哪种方式更好?有没有更好的方法?

最佳答案

AppDomain.CurrentDomain.BaseDirectory 是我的首选方式。

但是:

Application.StartupPath 获取可执行文件的目录

AppDomain.BaseDirectory 获取用于解析程序集的目录

由于它们可能不同,也许您想使用 Application.StartupPath,除非您关心程序集解析。

关于c# - 确定应用程序根目录的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/362790/

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