2
我想訪問一些文件的覆盆子pi2
與Windows 10 iot
核心。 我想知道如何使用它的地址?在windows中有 有驅動器和目錄,可以使用c:\a\b\c.txt
這樣的地址訪問。 ms-iot
文件系統和地址是如何組織的? 我也搜索了存儲卡,但我找不到我確定存在的文件。該文件的圖片語法從攝像頭捕獲和貝洛奧裏藏特碼保存在設備上如何訪問圖像拍攝從網絡攝像頭覆盆子pi窗口10 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
路徑來訪問文件,但沒有文件提前
感謝
謝謝\\ 192.168.1.123 \ C $是有幫助的地址 – AliSafari186