码迷,mamicode.com
首页 > 系统相关 > 详细

无法将类型为“Shell32.ShellClass”的 COM 对象强制转换为接口类型“Shell32.IShellDispatch 6”

时间:2015-06-16 17:01:04      阅读:1469      评论:0      收藏:0      [点我收藏+]

标签:shellclass   ishelldispatch   c#   shell32   interop.shell32.dll   

今天想研究一下mp3 然后在输出mp3长度的时候用了如下代码(网上搬得):

string file = "D:\\AccountDaemon\\My Music\\MyMusics\\Luxtos.mp3";
            ShellClass sh = new ShellClass();

            Folder dir = sh.NameSpace(Path.GetDirectoryName(file));

            FolderItem item = dir.ParseName(Path.GetFileName(file));

            string str = dir.GetDetailsOf(item, 27); // 获取歌曲时长。

            Console.WriteLine(str);

然后出现了这个:

未经处理的异常:  System.InvalidCastException: 无法将类型为“Shell32.ShellClass”的 COM 对象强制转换为接口类型“Shell32.IShellDispatch6”。此操作失败的原因是对 IID 为“{286E6F1B-7113-4355-9562-96B7E9D64C54}”的接口的 COM 组件调用 QueryInterface 因以下错误而失败: 不支持此接口 (异常来自 HRESULT:0x80004002 (E_NOINTERFACE))。


这个是因为vs自带的Interop.Shell32.dll版本是1.0 太老了,于是在网上找到了1.2版本的,然后改成引用1.2版本。再将引用属性里面的 嵌入互操作类型  改为false 就行了

dll的下载地址:http://download.csdn.net/detail/u013529927/8812075

无法将类型为“Shell32.ShellClass”的 COM 对象强制转换为接口类型“Shell32.IShellDispatch 6”

标签:shellclass   ishelldispatch   c#   shell32   interop.shell32.dll   

原文地址:http://blog.csdn.net/st_kalecgos/article/details/46518239

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!