Uygulama klasörü yolunu almanın bazı yolları olduğunu görüyorum:
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)
Duruma bağlı olarak en iyi yol nedir?
IHostEnvironment.ContentRootPath
, enjekte edilen bir IHostEnvironment
bağımlılıktan erişilen (başka yararlı şeyler içeren) var.