我想用windows 10 iot
内核访问树莓pi2
上的一些文件。我想知道地址怎么写?在windows中,有驱动器和目录可以访问地址,如c:abc.txt
。ms-iot
文件系统和地址是如何组织的?我也搜索了存储卡,但我找不到我确信存在的文件。该文件是一张从网络摄像头按语法捕获的图片,并通过以下代码
takePhoto.IsEnabled = false;
recordVideo.IsEnabled = false;
captureImage.Source = null;
photoFile = await KnownFolders.PicturesLibrary.CreateFileAsync(
PHOTO_FILE_NAME, CreationCollisionOption.GenerateUniqueName);
ImageEncodingProperties imageProperties = ImageEncodingProperties.CreateJpeg();
await mediaCapture.CapturePhotoToStorageFileAsync(imageProperties, photoFile);
takePhoto.IsEnabled = true;
status.Text = photoFile.Path;
IRandomAccessStream photoStream = await photoFile.OpenReadAsync();
BitmapImage bitmap = new BitmapImage();
bitmap.SetSource(photoStream);
captureImage.Source = bitmap;
我使用status.text
中的路径访问文件,但没有文件
thanks in advance
您可以尝试通过网络上的UNC路径访问本地文件系统。因为它是Windows操作系统,所以它有默认的管理共享。
例如:\192.168.1.123C$
这将提示输入设备的管理员用户详细信息。
还可以查看这篇博客文章,了解通过物联网仪表板访问它的方法:http://www.purplefrogsystems.com/paul/2016/06/controlling-your-windows-10-iot-core-device/