0
A
回答
1
檢查了這一點
using System;
using System.Collections;
using System.Configuration;
class DisplayLocationInfo
{
static void Main(string[] args)
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
ConfigurationLocationCollection myLocationCollection = config.Locations;
foreach (ConfigurationLocation myLocation in myLocationCollection)
{
Console.WriteLine("Location Path: {0}", myLocation.Path);
Configuration myLocationConfiguration = myLocation.OpenConfiguration();
Console.WriteLine("Location Configuration File Path: {0}", myLocationConfiguration.FilePath);
}
Console.WriteLine("Done...");
Console.ReadLine();
}
}
https://msdn.microsoft.com/en-us/library/system.configuration.configurationlocation(v=vs.100).aspx
相關問題
- 1. 在Makefile中從文件的給定路徑獲取位置
- 2. 如何將coredump位置/路徑配置爲特定於進程?
- 3. 在Ruby on Rails中配置路徑和路徑的位置?
- 4. 獲取無parmaters的位置路徑
- 5. 如何獲取路徑的位置?
- 6. 獲取當前XmlReader位置的'路徑'
- 7. Javascript。從特定位置獲取節點
- 8. 獲取URL位置路徑名稱
- 9. 在不同位置獲取img路徑
- 10. 獲取遠程文件路徑位置
- 11. NGINX重定向所有路徑指向一個位置在NGINX配置像這樣的特定路徑
- 12. 從位置獲取值
- 13. 如何從web.config中的位置路徑獲取授權用戶的值?
- 14. 設置路徑的位置
- 15. 如何從python中給定位置的路徑中取出單個值?
- 16. 從位置獲取位置
- 17. 從文件上傳的位置獲取文件路徑
- 18. 如何在asp.net mvc,web.config文件中爲特定位置設置maxRequestLength和maxAllowedContentLength?
- 19. java.exe的位置與路徑不匹配
- 20. Nginx的位置路徑匹配
- 21. 如何從字節數組中獲取特定位置的位值?
- 22. 獲取特定單詞的位置
- 23. 如何獲得從MSB開始的特定位置的位值?
- 24. 從特定位置
- 25. SVG路徑位置
- 26. PHP路徑位置
- 27. Symfony參數yml配置路徑到特定的包中
- 28. 從Active Directory獲取配置文件路徑和主文件夾
- 29. nginx位置路徑匹配問題
- 30. 從字符串中獲取特定位置的最佳方法
只要我打的第一OpenExeConfiguration我得到錯誤:必須指定exePath不運行時裏面有一個獨立的exe文件 應用程序是.NET 4.0 –
另外,使用web.config –