コード例 #1
0
 private void Button_Clear_Clicked(object sender, RoutedEventArgs e)
 {
     FileList.Clear();
     FileListTemp.Clear();
     treeview_nodes.Clear();
     treeview.ItemSources = null;
 }
コード例 #2
0
ファイル: Page_File.xaml.cs プロジェクト: thomaswww/ConvertZZ
        private void ImportFileNames(string[] FileNames)
        {
            string ParentPath = Path.GetDirectoryName(FileNames.First());

            foreach (string str in FileNames)
            {
                if ((Path.GetFileNameWithoutExtension(str) == " " || Directory.Exists(str)) && System.IO.Directory.Exists(System.IO.Path.GetDirectoryName(str)))
                {
                    string folderpath = System.IO.Path.GetDirectoryName(str);
                    App.Settings.FileConvert.GetExtentionArray(Combobox_Filter.Text).ForEach(filter =>
                    {
                        List <string> childFileList = System.IO.Directory.GetFiles(folderpath, filter.Trim(), AccordingToChild ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly).Where(x => App.Settings.FileConvert.CheckExtension(x, filter)).ToList();
                        childFileList.ForEach(x =>
                        {
                            FileListTemp.Add(new FileList_Line()
                            {
                                IsChecked = true, IsFile = true, Name = System.IO.Path.GetFileName(x), ParentPath = ParentPath, Path = Path.GetDirectoryName(x)
                            });
                        });
                    });
                    FileListTemp = new ObservableCollection <FileList_Line>(FileListTemp.OrderBy(x => x.Name).Distinct().OrderBy(x => x.IsFile).OrderBy(x => x.Path));
                }
                else if (File.Exists(str))
                {
                    FileListTemp.Add(new FileList_Line()
                    {
                        IsChecked = true, Name = Path.GetFileName(str), ParentPath = ParentPath, Path = Path.GetDirectoryName(str)
                    });
                }
            }
        }
コード例 #3
0
 private void Button_Clear_Clicked(object sender, RoutedEventArgs e)
 {
     FileList.Clear();
     FileListTemp.Clear();
     ID3v1_TagList.Clear();
     ID3v2_TagList.Clear();
     LastPath = "";
 }
コード例 #4
0
        private void Button_SelectFile_Clicked(object sender, RoutedEventArgs e)
        {
            OpenFileDialog fileDialog = new OpenFileDialog()
            {
                Multiselect = true, CheckFileExists = false, CheckPathExists = true, ValidateNames = false
            };

            fileDialog.InitialDirectory = App.Settings.FileConvert.DefaultPath;
            fileDialog.FileName         = " ";
            if (FileMode)
            {
                fileDialog.Filter = Combobox_Filter.SelectedValue.ToString();
            }
            if (fileDialog.ShowDialog() == true)
            {
                string ParentPath = Path.GetDirectoryName(fileDialog.FileNames.First());
                OutputPath = Path.GetDirectoryName(fileDialog.FileNames.First());
                if (!FileMode)
                {
                    treeview_nodes = new List <Node>()
                    {
                        GetChildPath(OutputPath, AccordingToChild, Combobox_Filter.Text)
                    };
                    treeview.ItemSources = treeview_nodes;
                    Treeview_CheckedChanged(null);
                }
                else
                {
                    foreach (string str in fileDialog.FileNames)
                    {
                        if (Path.GetFileNameWithoutExtension(str) == " " && System.IO.Directory.Exists(System.IO.Path.GetDirectoryName(str)))
                        {
                            string folderpath = System.IO.Path.GetDirectoryName(str);
                            App.Settings.FileConvert.GetExtentionArray(Combobox_Filter.Text).ForEach(filter =>
                            {
                                List <string> childFileList = System.IO.Directory.GetFiles(folderpath, filter.Trim(), AccordingToChild ? SearchOption.AllDirectories : SearchOption.TopDirectoryOnly).Where(x => App.Settings.FileConvert.CheckExtension(x, filter)).ToList();
                                childFileList.ForEach(x =>
                                {
                                    FileListTemp.Add(new FileList_Line()
                                    {
                                        IsChecked = true, IsFile = true, Name = System.IO.Path.GetFileName(x), ParentPath = ParentPath, Path = Path.GetDirectoryName(x)
                                    });
                                });
                            });
                            FileListTemp = new ObservableCollection <FileList_Line>(FileListTemp.OrderBy(x => x.Name).Distinct().OrderBy(x => x.IsFile).OrderBy(x => x.Path));
                        }
                        else if (File.Exists(str))
                        {
                            FileListTemp.Add(new FileList_Line()
                            {
                                IsChecked = true, Name = Path.GetFileName(str), ParentPath = ParentPath, Path = Path.GetDirectoryName(str)
                            });
                        }
                    }
                }
                Combobox_Filter_SelectionChanged(Combobox_Filter, null);
            }
        }