在Windows Universal中写入文件到外部闪存驱动器

本文关键字:外部 闪存 驱动器 文件 Windows Universal | 更新日期: 2023-09-27 18:01:39

我正在树莓派上使用Windows IoT编写应用程序。我想将数据写入连接到一个USB端口的外部闪存驱动器。我已经找到了如何在PI中写入SD卡的示例,但SD卡在最终产品中无法访问。

我可以得到闪存驱动器的根文件夹名称,但是当我试图向它写入文件时,我得到一个访问拒绝消息。如果我切换到SD卡,一切都很好。

谁能给我指出一个例子,允许访问外部闪存驱动器?

在Windows Universal中写入文件到外部闪存驱动器

出于安全原因,通用Windows应用程序只能访问外部驱动器上的某些类型的文件,

    音乐

必须在Package中显式声明。appxmanifest文件。

  • 音乐库
  • <
  • 照片库/gh>
  • 视频库

您可能还需要检查可移动存储功能。

我认为除了上述三种类型之外,你不能访问一般的文件格式,否则你会得到一个"access is denied"异常。

在这里找到更多细节。

一旦您声明了您的功能,您就可以使用以下代码获得外部存储设备的根文件夹,

var removableDevices = KnownFolders.RemovableDevices;
var externalDrives = await removableDevices.GetFoldersAsync();
var drive0 = externalDrives[0];

然后您可以使用Stream方法写入文件,遵循这里的代码示例。

如果您想要将数据写入通用文件格式,一个解决方法是使用可访问的文件格式(如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);
            }
        }
    }

在Package中设置Capability。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
             {
             }
}