如何获取应用程序到扩展的映射

发布于 2024-10-22 05:46:04 字数 169 浏览 1 评论 0原文

我有一个应用程序,允许用户将文件保存到独立存储。该应用程序将以与文件资源管理器类似的方式显示所有文件,并允许用户双击文件以查看它。

有没有办法从 Windows 获取所有应用程序到扩展的映射,并在单击文件时启动正确的应用程序?这当然将基于文件的扩展名......

谢谢,

马丁

I have an application that allows users to save files to Isolated Storage. The application will display all files, in similar fashion to the file explorer and will allow a user to double click the file in order to view it.

Is there a way to grab all application-to-extension mappings from windows and fire up the right application whenever a file is clicked? This of course will be based on the extension of the file....

Thanks,

Martin

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小帐篷 2024-10-29 05:46:05

使用它以默认处理方式打开文件:

System.Diagnostics.ProcessStartInfo psi= new System.Diagnostics.ProcessStartInfo("c:\\afile.txt");
psi.UseShellExecute = true;
psi.Verb = "open";
System.Diagnostics.Process.Start(psi);

这对应于 API 调用:

ShellExecute(0, "open", "C:\\afile.txt", 0, 0, SW_SHOWNORMAL);

Use this to open a file with default handling:

System.Diagnostics.ProcessStartInfo psi= new System.Diagnostics.ProcessStartInfo("c:\\afile.txt");
psi.UseShellExecute = true;
psi.Verb = "open";
System.Diagnostics.Process.Start(psi);

This corresponds to API call:

ShellExecute(0, "open", "C:\\afile.txt", 0, 0, SW_SHOWNORMAL);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文