ฉันเห็นว่ามีบางวิธีในการรับเส้นทางโฟลเดอร์แอปพลิเคชัน:
Application.StartupPath
System.IO.Path.GetDirectoryName( System.Reflection.Assembly.GetExecutingAssembly().Location)
AppDomain.CurrentDomain.BaseDirectory
System.IO.Directory.GetCurrentDirectory()
Environment.CurrentDirectory
System.IO.Path.GetDirectoryName( System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)
System.IO.Path.GetDirectory(Application.ExecutablePath)
วิธีที่ดีที่สุดขึ้นอยู่กับสถานการณ์คืออะไร?
IHostEnvironment.ContentRootPath
เข้าถึงได้ผ่านการIHostEnvironment
พึ่งพาการฉีด(ซึ่งมีสิ่งที่มีประโยชน์อื่น ๆ )