namespace 判断某文件是否存在
{
class Program
{
static void Main(string[] args)
{
string path = "C:\\tt.jpg";
bool ph= File.Exists(path);//判断是否有这个文件
if (ph)
{
Console.WriteLine("文件存在!");
}
else
{
Console.WriteLine("文件不存在");
}
Console.ReadKey();
}
}
}
浙公网安备 33010602011771号