shell 获取 文件详细信息
首先引用COM组件
Microsoft Shell Controls And Automation这里需要注意DLL的属性Embed Interop Type 设为False否则会引起互操作类型异常代码如下ShellClass sh = new ShellClass();Folder dir = sh.NameSpace(Path.GetDirectoryName(sFile));FolderItem item = dir.ParseName(Path.GetFileName(sFile));string det = dir.GetDetailsOf(item, iCol);iCol 对应文件详细属性汇总ID => DETAIL-NAME0 => Name1 => Size // MP3 文件大小2 => Type3 => Date modified4 => Date created5 => Date accessed6 => Attributes7 => Offline status8 => Offline availability9 => Perceived type10 => Owner11 => Kinds12 => Date taken13 => Artists // MP3 歌手14 => Album // MP3 专辑15 => Year16 => Genre17 => Conductors18 => Tags19 => Rating20 => Authors21 => Title // MP3 歌曲名22 => Subject23 => Categories24 => Comments25 => Copyright26 => #27 => Length // MP3 时长28 => Bit rate29 => Protected30 => Camera model31 => Dimensions32 => Camera maker33 => Company34 => File description35 => Program name36 => Duration37 => Is online38 => Is recurring39 => Location40 => Optional attendee addresses41 => Optional attendees42 => Organizer address43 => Organizer name44 => Reminder time45 => Required attendee addresses46 => Required attendees47 => Resources48 => Free/busy status49 => Total size50 => Account name51 => Computer52 => Anniversary53 => Assistant's name54 => Assistant's phone55 => Birthday56 => Business address57 => Business city58 => Business country/region59 => Business P.O. box60 => Business postal code61 => Business state or province62 => Business street63 => Business fax64 => Business home page65 => Business phone66 => Callback number67 => Car phone68 => Children69 => Company main phone70 => Department71 => E-mail Address72 => E-mail273 => E-mail374 => E-mail list75 => E-mail display name76 => File as77 => First name78 => Full name79 => Gender80 => Given name81 => Hobbies82 => Home address83 => Home city84 => Home country/region85 => Home P.O. box86 => Home postal code
浙公网安备 33010602011771号