C#创建文件夹的实际应用浅析

C#创建文件夹的实际应用是如何的,最近遇到的问题是用openfiledialog来打开相机拍下的照片程序,竟然发现无法浏览除了My Documents之外的文件夹,很是郁闷,用C#创建的文件夹也看不到。那么如何解决呢?

C#创建文件夹实现的代码:

using System.IO;  



//C#创建文件夹  




private void button2_Click(  




object sender, EventArgs e)  



 


{  


 



if (Directory.Exists("\\picture"))  



 


{  


 



MessageBox.Show("directory exists");  




//C#创建文件夹  



}  


 



else {  



 



Directory.CreateDirectory("\\picture");  



 


}  


} 

c#

相关推荐