资源简介
鉴于大家的需要,上传MTP文件拷贝传输代码For C#,代码仅提供参考,希望对大家有所帮助;
MTP设备文件并无盘符,是在MTP设备ID下,以树形结构存在的,操作时,我们其实操作的是文件的镜像,文件操作全部使用的是文件ID.
MTP文件修改不存在修改功能,全部是本地修改然后覆盖MTP设备上的文件;

代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using PortableDeviceApiLib;
namespace WindowsFormsApplication13
{
public class PortableDeviceFile : PortableDeviceobject
{
PortableDeviceClass ppDevice = new PortableDeviceClass();
public PortableDeviceFile(string id string name)
: base(id name)
{ }
public PortableDeviceFolder GetContents()
{
var root = new PortableDeviceFolder(“DEVICE“ “DEVICE“);
IPortableDeviceContent content;
ppDevice.Content(out content);
EnumerateContents(ref content root);
return root;
}
private static void EnumerateContents(ref IPortableDeviceContent content PortableDeviceFolder parent)
{
// Get the properties of the object
IPortableDeviceProperties properties;
content.Properties(out properties);
// Enumerate the items contained by the current object
IEnumPortableDeviceobjectIDs objectIds;
content.Enumobjects(0 parent.Id null out objectIds);
uint fetched = 0;
do
{
string objectId;
objectIds.Next(1 out objectId ref fetched);
if (fetched > 0)
{
var currentobject = Wrapobject(properties objectId);
parent.Files.Add(currentobject);
if (currentobject is PortableDeviceFolder)
{
EnumerateContents(ref content (PortableDeviceFolder)currentobject);
}
}
} while (fetched > 0);
}
private static PortableDeviceobject Wrapobject(IPortableDeviceProperties properties string objectId)
{
IPortableDeviceKeyCollection keys;
properties.GetSupportedProperties(objectId out keys);
IPortableDeviceValues values;
properties.GetValues(objectId keys out values);
// Get the name of the object
string name;
var property = new _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 _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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 32768 2008-01-09 10:02 Mtp For C#\Interop.PortableDeviceApiLib.dll
文件 28672 2008-01-09 12:15 Mtp For C#\Interop.PortableDeviceTypesLib.dll
文件 9449 2014-01-08 15:15 Mtp For C#\MTP.CS
文件 4168 2014-01-03 16:33 Mtp For C#\PortableDeviceFile.cs
文件 433 2014-01-03 16:19 Mtp For C#\PortableDeviceFolder.cs
文件 422 2014-01-03 16:18 Mtp For C#\PortableDeviceob
目录 0 2014-01-08 15:17 Mtp For C#
----------- --------- ---------- ----- ----
75912 7
- 上一篇:C#操作手持机识别RFID电子标签
- 下一篇:会员积分管理系统C#版
相关资源
- asp.net FileUpload 上传进度条
- 欧美小时线数据
- 文件恢复源码 c# .net
- ASP.Net MVC NPOI导入导出 数据库
- 读取shapefile
- LumiSoftsmtp邮件发送winform
- 基于SMTP协议的电子邮件发送程序的设
- DirectoryWatch.rar
- ReadShapeFile_test.rar
- asp.net mvc+Bootstrap Fileinput框架实现的文
- GDAL读取Shapefile并将Shape转换成WKT
- 原创仿OpenFileDialog文件选择对话框源码
- C#做的SMTP邮件收发程序
- WinForm复制粘贴图片
- asp.net 打开弹出savefiledialog或者openfi
- FileSendProtocol_20170920.rar
- 利用CopyMemory实现IEEE754与十进制float之
- 基于SMTP和POP3协议的EMAIL收发软件
- C# 监控目录变化目录以及变化文件及
- (c#)使用SHGetFileInfo获取文件或文件
- seafile私有云的api的C#客户端实现
- FileUpload控件上传文件客户端验证格式
- c#文件发送一个服务器多个客户端
- C#使用SMTP服务器发送邮件
- C# 基于SMTP协议和SOCKET发送邮件及附件
- TEXT文本批量转shapefile文件
- C# 实现简单邮件SMTP和POP3客户端 联系
-
Grasshopper li
nk files制作Grasshopper电池 - SQL Server Profiler with C#
- C#编写简单的邮件客户端支持POP3,S
评论
共有 条评论