如何使用iPropertyStorage读取文件的属性(如标题,作者,页数等)?有人知道c#中的代码,请发布
实际上,
我正在尝试以编程方式(使用c#)读取文件属性(标题,摘要,作者,注释等......当您看到文件的属性时,显示在摘要选项卡上的内容)。< / p>
FileInfo和FileSystemInfo类只公开标准属性(创建时间,模拟时间等)。所以我正在尝试使用ipropertyStorage。任何人都知道解决方案后会有所帮助。
答案 0 :(得分:2)
Shell32.Shell shl = new Shell32.ShellClass();
Shell32.Folder dir = shl.NameSpace(@"c:\temp");
Shell32.FolderItem itm = dir.Items().Item("test.txt");
Shell32.ShellFolderItem itm2 = (Shell32.ShellFolderItem)itm;
string prop = (string)itm2.ExtendedProperty("{F29F85E0-4FF9-1068-AB91-08002B27B3D9} 4");
Console.WriteLine(prop);
您可以使用的属性ID(PID)值记录在此SDK article。
中