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();
        }
    }
}

  

posted on 2022-05-30 15:27  sbwynnss  阅读(102)  评论(0)    收藏  举报