gpt4 book ai didi

c# - 使用 WPD 将文件复制到 Windows Phone C#

转载 作者:行者123 更新时间:2023-11-30 12:26:39 25 4
gpt4 key购买 nike

我想通过 MTP 将至少一个文件复制到 Windows Phone。按照本教程,我可以连接到手机并将文件从手机复制到计算机: WPD: Transferring Content但是我无法以相反的方式复制文件(从计算机到手机)。这是我的代码:

IPortableDeviceContent content;
this._device.Content(out content);
IPortableDeviceValues values = GetRequiredPropertiesForContentType(fileName, parentObjectId);

PortableDeviceApiLib.IStream tempStream;
uint optimalTransferSizeBytes = 0;
content.CreateObjectWithPropertiesAndData(
values,
out tempStream,
ref optimalTransferSizeBytes,
null);

System.Runtime.InteropServices.ComTypes.IStream targetStream = (System.Runtime.InteropServices.ComTypes.IStream)tempStream;

try
{
using (var sourceStream = new FileStream(fileName, FileMode.Open, FileAccess.Read))
{
var buffer = new byte[optimalTransferSizeBytes];
int bytesRead;
do
{
bytesRead = sourceStream.Read(buffer, 0, (int)optimalTransferSizeBytes);
IntPtr pcbWritten = IntPtr.Zero;
targetStream.Write(buffer, (int)optimalTransferSizeBytes, pcbWritten);
} while (bytesRead > 0);

}
targetStream.Commit(0);
}
finally
{
Marshal.ReleaseComObject(tempStream);
}

我在多个设备上测试了这段代码。它适用于普通的 mp3 播放器,假设教程是正确的,它也适用于 Android 手机。但是用两个不同的 Windows Phone 运行这段代码,我得到以下异常:

An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in      PortableDevices.exe

Additional information: The data area passed to a system call is too small. (Exception from HRESULT: 0x8007007A)

在这一行:targetStream.Write(buffer, (int)optimalTransferSizeBytes, pcbWritten);

缓冲区大小为 262144 字节,而文件大小仅为 75 KB。我希望有人知道如何解决这个问题。

问候语j0h4nn3s

最佳答案

我有同样的问题,原来作者犯了一个简单的错误。您写的是缓冲区的大小,而不是您读取的字节数。

替换

targetStream.Write(buffer, (int)optimalTransferSizeBytes, pcbWritten);

通过

targetStream.Write(buffer, bytesRead, pcbWritten);

关于c# - 使用 WPD 将文件复制到 Windows Phone C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27839822/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com