8.0 檔案系統: StorageFolder, StorageFile, 通過 Uri 引用檔案, 擷取 SD 記憶卡中的檔案
介紹
與眾不同 windows phone 8.0 之 檔案系統
通過 StorageFolder 和 StorageFile 實現檔案的讀寫
通過 Uri 引用檔案
擷取 SD 記憶卡中的內容
樣本
1、示範如何通過 StorageFolder 和 StorageFile 實現檔案的讀寫
FileSystem/ReadWriteDemo.xaml
<phone:PhoneApplicationPage x:Class="Demo.FileSystem.ReadWriteDemo" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone" xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" FontFamily="{StaticResource PhoneFontFamilyNormal}" FontSize="{StaticResource PhoneFontSizeNormal}" Foreground="{StaticResource PhoneForegroundBrush}" SupportedOrientations="Portrait" Orientation="Portrait" mc:Ignorable="d" shell:SystemTray.IsVisible="True"> <Grid Background="Transparent"> <StackPanel Orientation="Vertical"> <TextBlock x:Name="lblMsg" /> <Button x:Name="btnWrite" Content="寫檔案" Click="btnWrite_Click" /> <Button x:Name="btnRead" Content="讀檔案" Click="btnRead_Click" /> </StackPanel> </Grid> </phone:PhoneApplicationPage>