Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的应用程序,我想使用单击一次部署来安装它。我想检索用户安装应用程序的路径。检查下图:-
我想检索用户输入的路径。是否可以检索该路径?如果可能,请提出合适的方法。该应用程序是用 C# 制作的
可以获取应用程序运行的路径。
只需使用:
using System.Reflection; ... Assembly.GetExecutingAssembly().Location
这将为您提供应用程序的路径。
如果你只想要文件夹,你可以使用
AppDomain.CurrentDomain.BaseDirectory