C#UWP:将文件复制到本地文件夹内的文件夹无法正常运行

时间:2018-09-07 19:26:24

标签: c# file-io uwp

我目前正在构建一个音乐库应用程序,它将存储和显示音乐文件。

该应用程序将允许用户按下按钮,然后上传音频文件。我编写了代码,将音乐文件从用户的计算机复制到我创建的本地文件夹内的音乐文件夹中。我的代码运行正常,没有明显的错误,但是,当查看应用程序的文件夹时,看不到放置在其中的音乐文件夹或文件。

这是我的MainPage.xaml.cs代码:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.Storage;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;

namespace MusicLibraryTest
{   
    public sealed partial class MainPage : Page
    { 
        public MainPage()
        {
            this.InitializeComponent();
        }

        private async void Button_Click(object sender, RoutedEventArgs e)
        {
            //Music Library is opened on user's computer and displays all available mp3 files    
            var picker = new Windows.Storage.Pickers.FileOpenPicker
            {
                ViewMode = Windows.Storage.Pickers.PickerViewMode.Thumbnail,
                SuggestedStartLocation =  Windows.Storage.Pickers.PickerLocationId.MusicLibrary
            };

            picker.FileTypeFilter.Add(".mp3");
            picker.FileTypeFilter.Add(".mp4");
            picker.FileTypeFilter.Add(".m4a");

            var file = await picker.PickSingleFileAsync();
            var folder = ApplicationData.Current.LocalFolder;
            var musicFolder = await folder.CreateFolderAsync("musicfolder", CreationCollisionOption.OpenIfExists);

            //put file in future access list so it can be accessed when application is closed and reopened
            Windows.Storage.AccessCache.StorageApplicationPermissions.FutureAccessList.Add(file);
            //File is copied to local folder for use in music library
            if (folder != null && file != null)
            {
                await file.CopyAsync(musicFolder, file.Name, NameCollisionOption.GenerateUniqueName);
            }
        }
    }
}

我来自MainPage.xaml的代码:

<Page
    x:Class="MusicLibraryTest.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:MusicLibraryTest"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <Grid>
        <Button Content="Add Music" HorizontalAlignment="Left" Margin="750,407,0,0" VerticalAlignment="Top" Click="Button_Click" />
    </Grid>
</Page>

这可能是一个简单的修复程序,但是我的代码中有明显的不允许复制文件夹创建或文件复制的内容吗?

3 个答案:

答案 0 :(得分:1)

您要检查PC上还是设备上的文件吗?

答案 1 :(得分:0)

您在看错地方。我猜您正在查看项目的bin文件夹。

该应用需要在启动之前进行部署,并且其LocalFolder位于

  

%localappdata%\ Packages \ PACKAGENAME \ LocalState

其中 PACKAGENAME 是软件包族名称,格式为

  

YourApp_8wekyb3d8bbwe

您可以在.appxmanifest标签下签入项目的Packaging

答案 2 :(得分:0)

Click here,希望对您有所帮助。

在这种情况下,您从openPicker.FileTypeFilter.Add(".jpg");更改为openPicker.FileTypeFilter.Add(".mp3");。如果您想接受所有文件,那么您只需编写此行代码openPicker.FileTypeFilter.Add("*");

从我的角度来看,它工作正常。 谢谢!!!