C#选择文件和文件夹

时间:2024-11-08 07:53:50

C#选择文件

 

 

   OpenFileDialog fileDialog = new OpenFileDialog();

             = "C://";

             = "txt files (*.txt)|*.txt|All files (*.*)|*.*";

             = 1;

             = true;

            if (() == )

            {

                this. = ;

            }

 

 

 

C#选择文件夹
     string path = ""; FolderBrowserDialog folderBrowserDialog = new FolderBrowserDialog(); = false; if (() == ) { path = ; } else { } this. = path;

得到文件夹下文件目录
string[] dataFiles = (path);