Windows Phone 8 新增功能:對SD卡的訪問

l_serein發表於2013-03-25
[csharp] view plaincopy
  1.    

Windows Phone 8 新增加了對 SD 卡的支援,開發者可以直接訪問SD卡非加密的內容,但無法執行Write操作

而且使用者可以將已通過稽核的應用拷貝到SD上進行安裝,只是在安裝的過程中需要使用者手機聯網到marketplace上進行驗證,如果是合法程式則可以直接安裝使用。

程式碼中對SD卡操作需要新增 ID_CAP_REMOVABLE_STORAGE 能力,

使用程式碼片段,引用自官方Route mapper sample例子,完整例子請移步到:點選開啟連結

 

[csharp] view plaincopy
  1. // Process a route from the SD card.  
  2. private async Task ProcessSDGPXFile(string _sdFilePath)  
  3. {  
  4.     // Connect to the current SD card.  
  5.     ExternalStorageDevice sdCard = (await ExternalStorage.GetExternalStorageDevicesAsync()).FirstOrDefault();  
  6.   
  7.     // If the SD card is present, get the route from the SD card.  
  8.     if (sdCard != null)  
  9.     {  
  10.         try  
  11.         {  
  12.             // Get the route (.GPX file) from the SD card.  
  13.             ExternalStorageFile file = await sdCard.GetFileAsync(_sdFilePath);  
  14.   
  15.             // Create a stream for the route.  
  16.             Stream s = await file.OpenForReadAsync();  
  17.   
  18.             // Read the route data.  
  19.             ReadGPXFile(s);  
  20.         }  
  21.         catch (FileNotFoundException)  
  22.         {  
  23.             // The route is not present on the SD card.  
  24.             MessageBox.Show("That route is missing on your SD card.");  
  25.         }  
  26.     }  
  27.     else  
  28.     {  
  29.         // No SD card is present.  
  30.         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.");  
  31.     }  
  32. }  


相關文章