Windows Phone 8 新增功能:對SD卡的訪問
Windows Phone 8 新增加了對 SD 卡的支援,開發者可以直接訪問SD卡非加密的內容,但無法執行Write操作
而且使用者可以將已通過稽核的應用拷貝到SD上進行安裝,只是在安裝的過程中需要使用者手機聯網到marketplace上進行驗證,如果是合法程式則可以直接安裝使用。
程式碼中對SD卡操作需要新增 ID_CAP_REMOVABLE_STORAGE 能力,
使用程式碼片段,引用自官方Route mapper sample例子,完整例子請移步到:點選開啟連結
- // Process a route from the SD card.
- private async Task ProcessSDGPXFile(string _sdFilePath)
- {
- // Connect to the current SD card.
- ExternalStorageDevice sdCard = (await ExternalStorage.GetExternalStorageDevicesAsync()).FirstOrDefault();
- // If the SD card is present, get the route from the SD card.
- if (sdCard != null)
- {
- try
- {
- // Get the route (.GPX file) from the SD card.
- ExternalStorageFile file = await sdCard.GetFileAsync(_sdFilePath);
- // Create a stream for the route.
- Stream s = await file.OpenForReadAsync();
- // Read the route data.
- ReadGPXFile(s);
- }
- catch (FileNotFoundException)
- {
- // The route is not present on the SD card.
- MessageBox.Show("That route is missing on your SD card.");
- }
- }
- else
- {
- // No SD card is present.
- MessageBox.Show("The SD card is mssing. Insert an SD card that has a Routes folder containing at least one .GPX file and try again.");
- }
- }
相關文章
- rabbitmq 新增遠端訪問功能MQ
- Windows Phone SDK 8/8.1 官方下載Windows
- win10訪問sd卡時被防寫怎麼解決Win10SD卡
- 針對Android訪問sd卡里面的音訊檔案AndroidSD卡音訊
- 如何訪問Windows 10隱藏的一個控制皮膚功能Windows
- 對sd卡分割槽fat和ext4SD卡
- VMware VeloCloud SD-WAN 6.1 釋出,新增功能概覽Cloud
- django新增路由訪問helloworldDjango路由
- arduino使用SD卡模組以及檢查SD卡資訊UISD卡
- 8個容易被忽略但不能忽略的SD-WAN功能-VecloudCloud
- VMware vSphere 8 Update 3 新增功能
- Windows限制訪問指定IPWindows
- Nginx 對訪問量的控制Nginx
- windows10系統下sd卡無法識別怎麼辦WindowsSD卡
- SD卡資料恢復SD卡資料恢復
- SD(TF)卡原理設計
- mysql賬戶新增遠端訪問MySql
- Windows Server 2016-Hyper-V HNV 新增功能WindowsServer
- SD卡分割槽時需要注意什麼?SD卡分割槽注意事項SD卡
- windows10系統下sd記憶體卡打不開的修復方法Windows記憶體
- PHP8 都有哪些新功能,說說PHP8的新增特性PHP
- sd卡中的資料夾刪除了怎麼恢復,SD卡刪除的檔案如何恢復SD卡
- Windows Phone應用效能監控與分析技巧Windows
- 解決windows docker lnmp訪問慢問題WindowsDockerLNMP
- 相機SD卡照片恢復SD卡
- 儲存圖片到SD卡SD卡
- Windows Phone 8初學者開發—第13部分:設定LongListSelector中磁貼的樣式Windows
- windows設定僅訪問特定ipWindows
- Windows共享訪問如何重新建立Windows
- 解決 Windows 無法訪問共享Windows
- SD卡的基本知識與選購指南SD卡
- sd卡刪除的檔案如何恢復SD卡
- 【Android APK】解析SD卡上的APK檔案AndroidAPKSD卡
- win10怎麼修復sd卡_win10系統sd卡受損的修復步驟Win10SD卡
- windows 檢測某ip的埠是否可以訪問Windows
- Git 安全遠端訪問:SSH 金鑰對生成、新增和連線步驟解析Git
- springboot新增靜態資源無法訪問Spring Boot
- Linux掛載隨身碟,SD卡LinuxSD卡
- RT-Thread Studio驅動SD卡threadSD卡