P/Invoke for shell32.dll's SHMultiFileProperties

不羁岁月 提交于 2019-12-12 04:34:12

问题


I'm not very good with P/Invoke. Can anyone tell me how to declare and use the following shell32.dll function in .NET?

From http://msdn.microsoft.com/en-us/library/bb762230%28VS.85%29.aspx:

HRESULT SHMultiFileProperties(      
    IDataObject *pdtobj,
    DWORD dwFlags
);

It is for displaying the Windows Shell Properties dialog for multiple file system objects.

I already figured out how to use SHObjectProperties for one file or folder:

[DllImport("shell32.dll", SetLastError = true)]
static extern bool SHObjectProperties(uint hwnd, uint shopObjectType, [MarshalAs(UnmanagedType.LPWStr)] string pszObjectName, [MarshalAs(UnmanagedType.LPWStr)] string pszPropertyPage);

public static void ShowDialog(Form parent, FileSystemInfo selected)
{
    SHObjectProperties((uint)parent.Handle, (uint)ObjectType.File, selected.FullName, null));
}

enum ObjectType
{
    Printer = 0x01,
    File = 0x02,
    VoumeGuid = 0x04,
}

Can anyone help?


回答1:


There's an IDataObject interface and a DataObject class in the .NET Framework.

[DllImport("shell32.dll", SetLastError = true)]
static extern int SHMultiFileProperties(IDataObject pdtobj, int flags);

public static void Foo()
{
    var pdtobj = new DataObject();

    pdtobj.SetFileDropList(new StringCollection { @"C:\Users", @"C:\Windows" });

    if (SHMultiFileProperties(pdtobj, 0) != 0 /*S_OK*/)
    {
        throw new Win32Exception();
    }
}

EDIT: I've just compiled and tested this and it works (pops up some dialog with folder appearance settings).




回答2:


I maybe reading you question incorrectly, but I think you are looking for the extended file properties for files. i.e. opening windows explorer and viewing columns like attributes, owner, copyright, size, date created etc?

There is an API in Shell32 called GetDetailsOf that will provide this information. A starting article on codeproject Cheers, John



来源:https://stackoverflow.com/questions/1281085/p-invoke-for-shell32-dlls-shmultifileproperties

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!