在App.xaml.cs中获取应用程序运行路径
如何从 app.xaml.cs 本身获取应用程序的运行路径?
How can I get runnig path of my application from app.xaml.cs itself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从 app.xaml.cs 本身获取应用程序的运行路径?
How can I get runnig path of my application from app.xaml.cs itself?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
你可以尝试
和/或
You could try
and/or
您只需使用 System.Environment.GetCommandLineArgs属性来获取启动应用程序的命令行。使用 System.IO.Path 方法解析它仅提取可执行文件的文件名或完整路径。
You can just use the System.Environment.GetCommandLineArgs property to get the command line that started the application. Parse that with the System.IO.Path methods to extract just the executable's filename or full path.
这总是有效的:
This always works: