Win8.1應用開發之檔案操作,win8.1應用開發操作

來源:互聯網
上載者:User

Win8.1應用開發之檔案操作,win8.1應用開發操作

在操作檔案之前,先對應用的應用功能聲明進行設定。使用者通過C#(非UI)對win8.1上的檔案進行訪問,只能局限於圖片,音樂,視頻和文檔四個檔案夾。而通過檔案選擇器則能訪問到整個系統的檔案。

(一)應用功能聲明

對於win8市集應用,開啟Package.appxmanifest檔案,點擊“功能”選項卡,勾選“音樂庫”,“圖片庫”和“視頻庫”,這樣你就可以通過代碼對這裡面的檔案和檔案夾進行操作:


音樂
musicLibrary 功能可提供對使用者音樂的編程訪問能力,讓應用無需使用者互動即可枚舉和訪問庫中的所有檔案。此功能通常用在需要訪問整個音樂庫的點唱機應用中。
file picker 提供了一種強大的 UI 機制,讓使用者可以開啟要通過某個應用處理的檔案。 僅當應用需要進行編程訪問,而使用 file picker 無法實現編程訪問時,才應聲明 musicLibrary 功能。


圖片
picturesLibrary 功能可提供對使用者圖片的編程訪問能力,讓應用無需使用者互動即可枚舉和訪問庫中的所有檔案。此功能通常用在需要訪問整個圖片庫的照片播放應用中。
file picker 提供了一種強大的 UI 機制,讓使用者可以開啟要通過某個應用處理的檔案。 僅當應用需要進行編程訪問,而使用 file picker 無法實現編程訪問時,才應聲明 picturesLibrary 功能。 


視頻
videosLibrary 功能可提供對使用者視頻的編程訪問能力,讓應用無需使用者互動即可枚舉和訪問庫中的所有檔案。此功能通常用在需要訪問整個視頻庫的電影播放應用中。
file picker 提供了一種強大的 UI 機制,讓使用者可以開啟要通過某個應用處理的檔案。 僅當應用需要進行編程訪問,而使用 file picker 無法實現編程訪問時,才應聲明 videosLibrary 功能。


對於“文檔"檔案夾的訪問,要根據VS提供的出錯資訊進行自動化佈建,之後要設定檔案關聯,按照提示做即可。


(二)檔案選擇器

UI形式,可訪問整個系統上的檔案。使用檔案選擇器通過讓使用者選取檔案和檔案夾來訪問檔案和檔案夾。你可以使用 FileOpenPicker 類擷取對檔案的訪問,使用 FolderPicker 擷取對檔案夾的訪問。通過檔案選擇器,你的應用可以在使用者的整個系統上獲得對檔案和檔案夾的訪問。當你調用檔案選擇器時,使用者可以瀏覽其系統並選擇檔案(或檔案夾)以訪問和儲存。在使用者選取檔案或檔案夾之後,你的應用將這些選取作為 StorageFile 和 StorageFolder 對象進行接收。接著你的應用可以通過使用這些對象在選取的檔案和檔案夾上操作。

if (rootPage.EnsureUnsnapped()){    FileOpenPicker openPicker = new FileOpenPicker();    openPicker.ViewMode = PickerViewMode.Thumbnail;    openPicker.SuggestedStartLocation = PickerLocationId.PicturesLibrary;    openPicker.FileTypeFilter.Add(".jpg");    openPicker.FileTypeFilter.Add(".jpeg");    openPicker.FileTypeFilter.Add(".png");    StorageFile file = await openPicker.PickSingleFileAsync();    if (file != null)    {        // Application now has read/write access to the picked file        OutputTextBlock.Text = "Picked photo: " + file.Name;    }    else    {        OutputTextBlock.Text = "Operation cancelled.";    }}

(三)通過編程進行檔案操作

類KnownFolders 提供對其中包含使用者內容的常見位置的訪問。 這包括使用者的本地庫(如照片、文檔、音樂或視頻)中的內容、可行動裝置、家庭組以及媒體伺服器裝置。對於訪問磁碟檔案來說,這隻局限於圖片,音樂,文檔和視頻四個檔案夾。

樣本1:將伺服器上的一個檔案下載到“圖片”檔案夾下的一個子檔案(需動態建立)中

 string dync_IPv4 = "211.87.237.23";            string port = "8081";            string UrlJsonPath = "json/Images.txt";            //string UrlJsonPath = "Image/694021692/1214936171.png";            string uri = "http://" + dync_IPv4 + ":" + port + "/" + UrlJsonPath;            System.Diagnostics.Debug.WriteLine(uri);            string filename = "ImagesUri.txt";            //string filename = "DAXIA.png";            var rass = RandomAccessStreamReference.CreateFromUri(new Uri(uri));            IRandomAccessStream inputStream = await rass.OpenReadAsync();            Stream input = WindowsRuntimeStreamExtensions.AsStreamForRead(inputStream.GetInputStreamAt(0));                      try            {                //擷取圖片副檔名的Guid                StorageFolder folder = KnownFolders.PicturesLibrary;                //System.Diagnostics.Debug.WriteLine(folder.Path);                //Creates a new file in the current folder, and specifies what to do if a file with the same name already exists in the current folder.                StorageFolder childFolder = await folder.CreateFolderAsync("WhereWeGo");                StorageFile outputFile = await childFolder.CreateFileAsync(filename, CreationCollisionOption.ReplaceExisting);                //StorageFile outputFile = await folder.CreateFileAsync(filename, CreationCollisionOption.ReplaceExisting);                System.Diagnostics.Debug.WriteLine(outputFile.Path);                using (IRandomAccessStream outputStream = await outputFile.OpenAsync(FileAccessMode.ReadWrite))                {                    Stream output = WindowsRuntimeStreamExtensions.AsStreamForWrite(outputStream.GetOutputStreamAt(0));                    await input.CopyToAsync(output);                    output.Dispose();                    input.Dispose();                }            }            catch (Exception)            {                System.Diagnostics.Debug.WriteLine("adfasd");            } 

樣本2:接樣本1,將下載的檔案讀出來

  // 在指定的目錄下擷取指定的檔案            StorageFolder storageFolder = KnownFolders.PicturesLibrary;            StorageFolder folder = await storageFolder.GetFolderAsync("WhereWeGo");            StorageFile storageFile = await folder.GetFileAsync("ImagesUri.txt");           // StorageFile storageFile = await storageFolder.GetFileAsync("ImagesUri.txt");            if (storageFile != null)            {                // 擷取指定的檔案中的常值內容                string textContent = await FileIO.ReadTextAsync(storageFile, Windows.Storage.Streams.UnicodeEncoding.Utf8);                System.Diagnostics.Debug.WriteLine(textContent);            }



win81 雙擊開啟檔案夾時顯示沒有相關程式來執行操作,怎恢複設定?

1 如果各分區下帶autorun.inf一類的隱藏檔案,刪除之,重新啟動電腦。2 在檔案類型中重新設定開啟檔案(以XP為例)開啟我的電腦 工具》》檔案夾選項》》檔案類型 找到“磁碟機”或“檔案夾”(具體選哪個根據你所遇問題 若屬於雙擊打不開磁碟機則選擇“磁碟機” 打不開檔案夾則選擇“檔案夾”)點下方的“進階”》》點選“編輯檔案類型”裡的“建立”》》操作裡填寫“open”(這個可隨意填寫)》》用於執行操作的應用程式裡填寫explorer.exe》》確定.隨後返回到“編輯檔案類型”視窗,選中open》》設為預設值》》確定( 現在再開啟分區或檔案夾看下,是不是已恢複正常?



 
怎讓win81下所有檔案夾裡面都用中表徵圖顯示


就是這麼簡單


 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.