1、打开文件路径: OpenFileDialog a= new OpenFileDialog(); //new一个方法 a.Filter = "(*.et;*.xls;*.xlsx)|*.et;*.xls;*.xlsx|all|*.*"; //删选、设定文件显示类型 a.ShowDialog(); //显示打开文件的窗口 string fileName = a.FileName; //获得选择的文件路径 System.Diagnostics.Process.Start(fileName);//打开指定路径下的文件 2、打开文件夹路径 FolderBrowserDialog a = new FolderBrowserDialog(); a.ShowDialog(); folderName = a.SelectedPath; //获得选择的文件夹路径 3、保存文件 SaveFileDialog a = new SaveFileDialog(); a.Filter = "(*.et;*.xls;*.xlsx)|*.et;*.xls;*.xlsx|all|*.*"; //删选、设定文件显示类型 a.ShowDialog(); string path = a.FileName;
时间: 2024-10-14 01:27:16