您好,可以使用一些c#原生的接口获取当前项目路径,通过文件路径关系拼接出正确路径。
接口如:
System.Environment.CurrentDirectory;
System.IO.Directory.GetCurrentDirectory();
System.Windows.Forms.Application.StartupPath;
System.Windows.Forms.Application.ExecutablePath;
System.AppDomain.CurrentDomain.BaseDirectory;
System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase;
this.GetType().Assembly.Location;//Result: C:xxxxxxxxx.exe
System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
等其他适合接口。
希望可以帮助到您。