获取Windows便携设备上文件的全名

时间:2013-08-05 13:22:44

标签: c# filenames wpd

我正在尝试编写一个应用程序,将Windows便携设备上的特定文件夹(此处为Samsung Galaxy Note 2)中的数据传输到我的PC。

我能够成功列出所有文件夹和文件,并且还可以通过WPD-API访问我想要的特定文件夹。

this page的帮助下,我编写了一个名为“PortableDevice”的类,它包装了设备上的每个对象并从中创建了一个PortableDeviceObject(这是一个自制的类,不属于API) 以下是包装器方法的示例。

private static PortableDeviceObject WrapObject(IPortableDeviceProperties properties, string objectId)
        {
            PortableDeviceApiLib.IPortableDeviceKeyCollection keys;
            properties.GetSupportedProperties(objectId, out keys);

            PortableDeviceApiLib.IPortableDeviceValues values;
            properties.GetValues(objectId, keys, out values);

            // Get the name of the object
            string name;
            var property = new PortableDeviceApiLib._tagpropertykey();
            property.fmtid = new Guid(0xEF6B490D, 0x5CD8, 0x437A, 0xAF, 0xFC, 0xDA, 0x8B, 0x60, 0xEE, 0x4A, 0x3C);
            property.pid = 4;
            values.GetStringValue(property, out name);

            // Get the type of the object
            Guid contentType;
            property = new PortableDeviceApiLib._tagpropertykey();
            property.fmtid = new Guid(0xEF6B490D, 0x5CD8, 0x437A, 0xAF, 0xFC, 0xDA, 0x8B, 0x60, 0xEE, 0x4A, 0x3C);
            property.pid = 7;
            values.GetGuidValue(property, out contentType);

            var folderType = new Guid(0x27E2E392, 0xA111, 0x48E0, 0xAB, 0x0C, 0xE1, 0x77, 0x05, 0xA0, 0x5F, 0x85);
            var functionalType = new Guid(0x99ED0160, 0x17FF, 0x4C44, 0x9D, 0x98, 0x1D, 0x7A, 0x6F, 0x94, 0x19, 0x21);          

            if (contentType == folderType || contentType == functionalType)
            {
                return new PortableDeviceFolder(objectId, name);
            }

            return new PortableDeviceFile(objectId, name);
        }

当我访问name属性时,我原本以为我总是得到当前对象的全名(图片或音乐文件等)。但只有图片以全名显示(例如test_picture.jpeg),但是当我在文件夹中读取PDF时,它只打印出PDF的名称,而不是.PDF扩展名。 这有问题,因为我想迭代文件夹中的所有文件,想要获取数据流并在我的PC上的新文件中填充此流。它到目前为止工作,但所有文件(图片除外)都是在没有适当扩展名的情况下创建的,因此无法使用或必须手动重命名。

所以问题是:如何访问WPD文件夹中每个文件的FULL PATH?

1 个答案:

答案 0 :(得分:1)

我在this site的评论中找到了答案:

我只需要替换

return new PortableDeviceFile(objectId, name);

property.pid = 12;//WPD_OBJECT_ORIGINAL_FILE_NAME
values.GetStringValue(property, out name);
return new PortableDeviceFile(objectId, name);