C# 判断文件是否存在 不存在则创建
摘要://判断文件的存在 if (System.IO.File.Exists(Path)) &nbs…
//判断文件的存在
if (System.IO.File.Exists(Path))
{
//存在不做操作
}
else
{
//不存在创建文件
}


