获取 Mono 中的文件类型
如何获取 Mono 中的文件类型?即 "*.txt" => "文本文档"
, "*.jpg" => “JPEG 图像”
。与 Windows 上的 P/Invoke 返回的 SHFILEINFO.szTypeName
类似。
How do i get the file type in Mono? i.e. "*.txt" => "Text Document"
, "*.jpg" => "JPEG Image"
. Similar to what SHFILEINFO.szTypeName
returns with P/Invoke on Windows.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有跨平台的 API 可以实现这一点。在 Linux 上你可以使用 GIO,Mac 上也有原生 API,尽管我暂时不知道它们。在 Windows 上,您可以从 Mono P/Invoke。
There is no cross-platform API for this. On Linux you can use GIO, and there are native APIs on Mac too though I don't know them offhand. On Windows you can P/Invoke from Mono.