c#从项目中获取文件
c# Getting file from project
我有一个包含很多项目的解决方案,我只是在下一个路径解决方案 -> 项目('Functions') -> 文件夹('Pantallas') -> 文件( 'markercluster.js')
现在我想引用这个存档,获取应用程序当前位置的路径加上 'Functions/Pantallas/markercluster.js'
我该怎么做?
我得到了executablePath,然后删除了.exe
string exePath = Application.ExecutablePath;
然后在我的情况下(因为我的 .exe 名称长度为 21 个字符)
exePath = exePath.Substring(0,exePath.Length-21);
我有一个包含很多项目的解决方案,我只是在下一个路径解决方案 -> 项目('Functions') -> 文件夹('Pantallas') -> 文件( 'markercluster.js')
现在我想引用这个存档,获取应用程序当前位置的路径加上 'Functions/Pantallas/markercluster.js'
我该怎么做?
我得到了executablePath,然后删除了.exe
string exePath = Application.ExecutablePath;
然后在我的情况下(因为我的 .exe 名称长度为 21 个字符)
exePath = exePath.Substring(0,exePath.Length-21);