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.");
- }
- }
相關文章
- Windows Phone 8 新增功能:Windows.Storage新的檔案操作型別Windows型別
- Windows Phone 8 新增功能:解鎖開發者手機和新的除錯功能Windows除錯
- Windows Phone 8 新增功能:TTS文字朗讀功能 和 語音識別 APIWindowsTTSAPI
- Android 對SD卡的操作AndroidSD卡
- Dribbble for windows phone 8Windows
- rabbitmq 新增遠端訪問功能MQ
- Windows Phone 7 SIM卡資訊獲取Windows
- SD卡將加入無線通訊功能SD卡
- win10訪問sd卡時被防寫怎麼解決Win10SD卡
- Windows Phone 8開發連結Windows
- Windows Phone 8 開發筆記Windows筆記
- 解決樹莓派8G的SD卡只能識別3.3G,SD卡擴容樹莓派SD卡
- windows下把SD卡格式化成NTFS格式WindowsSD卡
- Windows Phone SDK 8/8.1 官方下載Windows
- 微軟洩漏Windows Phone 8新特性微軟Windows
- 【轉】Windows Phone 8 開發環境的搭建Windows開發環境
- Windows Phone 8 新增功能:支援第三方應用建立自定義聯絡人Custom Contact Store。Windows
- arduino使用SD卡模組以及檢查SD卡資訊UISD卡
- 針對Android訪問sd卡里面的音訊檔案AndroidSD卡音訊
- 對sd卡分割槽fat和ext4SD卡
- TF卡,Micro SD卡,Micro SDHC卡SD卡
- windows phone 8 新增功能:從一個應用程式啟動另一個程式(file association 和 Protocol association兩種方式)WindowsProtocol
- Windows Phone 8開發知識筆記Windows筆記
- 破解windows遠端桌面無法訪問智慧卡/令牌卡/數字證書的限制Windows
- Windows 8怎麼啟用分配訪問呢?Windows
- Windows Phone FAQWindows
- SAI:51%受訪者表示會考慮Windows Phone 7AIWindows
- 如何訪問Windows 10隱藏的一個控制皮膚功能Windows
- SD卡 TF卡 介面引腳定義SD卡
- SD卡速度等級的意義SD卡
- 適用mini SD卡的手機SD卡
- 判斷SD卡是否可用SD卡
- 手機SD卡修復SD卡
- SD(TF)卡原理設計
- SD卡資料恢復SD卡資料恢復
- Windows 10丟掉了哪些糟糕的Windows 8功能?Windows
- 8個容易被忽略但不能忽略的SD-WAN功能-VecloudCloud
- 檔案和目錄的訪問控制(2)新增訪問控制