gpt4 book ai didi

c# - 我如何获得 Bin 路径?

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

我需要执行程序集的 bin 路径。你怎么得到它?我在 Bin/Debug 中有一个文件夹插件,我需要获取位置

最佳答案

以下是获取应用程序执行路径的方法:

var path = System.IO.Path.GetDirectoryName( 
System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase);

MSDN 上有关于 how to determine the Executing Application's Path 的完整引用.

请注意,path 中的值将采用 file:\c:\path\to\bin\folder 的形式,因此在使用路径之前,您可以需要去掉前面的 file:\。例如:

path = path.Substring(6);

关于c# - 我如何获得 Bin 路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3461865/

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