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.
我创建了一个应用程序,其中具有特定文件类型的文件将在双击文件时向我们的应用程序打开。然后我们如何通过双击该文件来获取打开到默认程序的文件的路径。
示例:我们可以通过在系统中的任何位置双击该 mp3 文件将任何 mp3 文件打开到 windows 媒体播放器。然后 windows 媒体播放器如何获取要加载的 mp3 文件的路径。
您的Main方法会将其作为参数。
Main
static void Main(string[] Args)
尝试使用System.Diagnostics.Process.GetCurrentProcess().StartInfo并获得ProcessStartInfo.FileName财产。
System.Diagnostics.Process.GetCurrentProcess().StartInfo
ProcessStartInfo.FileName