我在Raspberry PI上使用Windows IoT编写应用程序。我想将数据写入连接到其中一个USB端口的外部闪存驱动器。我已经找到了如何在PI中写入SD卡的示例,但SD卡无法在最终产品中访问。
我可以获取闪存驱动器的根文件夹名称,但是当我尝试向其写入文件时,我会收到拒绝访问的消息。如果我切换到SD卡,一切正常。
有人能指出一个允许访问外置闪存驱动器的示例吗?
答案 0 :(得分:1)
在Package.appxmanifest文件中设置功能
<Capabilities>
<Capability Name="internetClient" />
<uap:Capability Name="removableStorage" />
<!--When the device's classId is FF * *, there is a predefined name for the class.
You can use the name instead of the class id.
There are also other predefined names that correspond to a classId.-->
<DeviceCapability Name="usb">
<!--SuperMutt Device-->
<Device Id="vidpid:045E 0611">
<!--<wb:Function Type="classId:ff * *"/>-->
<Function Type="name:vendorSpecific" />
</Device>
</DeviceCapability>
</Capabilities>
private async void btnCopyImages_Click(object sender, RoutedEventArgs e)
{
// Get the logical root folder for all external storage devices.
StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
// Get the first child folder, which represents the SD card.
StorageFolder sdCard = (await externalDevices.GetFoldersAsync()).FirstOrDefault();
// An SD card is present and the sdCard variable now contains a to reference it.
if (sdCard != null)
{
StorageFile resultfile = await sdCard.CreateFileAsync("foo.png", CreationCollisionOption.GenerateUniqueName);
string base64 = "/9j/4AAQSkZJRgABAQEAYABgAAD/4RjqR.....;
var bytes = Convert.FromBase64String(base64);
await FileIO.WriteBytesAsync(resultfile, bytes);
}
// No SD card is present.
else
{
}
}
答案 1 :(得分:0)
出于安全原因,通用Windows应用程序只能访问外部驱动器上的某些类型的文件,
你必须在Package.appxmanifest文件中明确声明它。
您可能还想检查可移动存储功能。
除了上述三种类型之外,我认为您无法访问常规文件格式,否则您将获得“访问被拒绝”异常。
在here中找到更多详情。
声明了您的功能后,您可以使用以下代码获取外部存储设备的根文件夹,
var removableDevices = KnownFolders.RemovableDevices;
var externalDrives = await removableDevices.GetFoldersAsync();
var drive0 = externalDrives[0];
然后,您可以使用Stream方法根据here中的代码示例写入文件。
如果要将数据写入通用文件格式,解决方法是使用可访问的文件格式(如jpg),并将原始数据写入其中。下面是一些在Raspberry Pi 2 Model B上验证的代码示例,其中包含Windows IoT 14393,外部USB驱动器连接到USB端口。
private async void WriteData()
{
var removableDevices = KnownFolders.RemovableDevices;
var externalDrives = await removableDevices.GetFoldersAsync();
var drive0 = externalDrives[0];
var testFolder = await drive0.CreateFolderAsync("Test");
var testFile = await testFolder.CreateFileAsync("Test.jpg");
var byteArray = new byte[] { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07 };
using (var sourceStream = new MemoryStream(byteArray).AsRandomAccessStream())
{
using (var destinationStream = (await testFile.OpenAsync(FileAccessMode.ReadWrite)).GetOutputStreamAt(0))
{
await RandomAccessStream.CopyAndCloseAsync(sourceStream, destinationStream);
}
}
}