2017년 8월 17일 목요일

[C#] Get Files in Folder

 FolderBrowserDialog ofd = new FolderBrowserDialog();
            if ( ofd.ShowDialog() == System.Windows.Forms.DialogResult.OK )
            {
                try
                {
                    FileNamesList = new List();
                    Directory.GetFiles( ofd.SelectedPath ).Where( x => System.IO.Path.GetExtension(x) == ".jpg").Select( x => x).ToList();
                   




                    var result = SingleProcessing( new Image( ofd.FileName ) , true);
                    mainimg.ImageSource = result.Item1.ToBitmapSource();
                }
                catch ( Exception )
                {
                }
            }

댓글 없음:

댓글 쓰기