C#判断指定目录是否存在,判断文件是否存在,不存在则创建

C#判断指定目录是否存在,判断文件是否存在,不存在则创建

1、判断文件夹是否存在

	//path:文件夹路径名
	using System.IO;
	// 如果 目录存在 则进入
	if (Directory.Exists(path))
	{
 
	}
	else
	{
		//创建了一个路径为 path 文件夹的实例对象
		DirectoryInfo directoryInfo = new DirectoryInfo(path);
		// 创建目录
		directoryInfo.Create();
	}

2、判断文件是否存在

	// filePath 文件路径名
 	
 	// 如果文件不存在 则创建
	if (!File.Exists(filePath))
	{
		
		FileStream fs = File.Create(filePath);//创建文件
		fs.Close();
		return ;
	}
	else
	{
		 // 如果文件存在
		 //执行读写操作
	}

你可能感兴趣的:(C#,学习,c#,开发语言)