using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Test { class Program { static void Main(string[] args) { string path = @"F:\1.txt"; //指定文件的路径 //---------------------------------------------- //.Exists(path)是判断指定路径下的文件是否存在。 if (System.IO.File.Exists(path)) { Console.WriteLine("指定路径下的文件存在"); } else { Console.WriteLine("指定路径下的文件不存在"); } //---------------------------------------------- //将"耐克"这个字符串按照Encoding.Default编码的方式添加到 "path"这个路径对应的文件中去。 //注意:假如F:\1.txt 这个路径不存在1.txt这个文件,它就会给你自动生成一个1.txt文件,然后给“耐克”这个字符串添加进去 System.IO.File.AppendAllText(path, "耐克", Encoding.Default); //按照Encoding.Default的编码方式读取“path”指定路径下的文件。 string readFile = System.IO.File.ReadAllText(path, Encoding.Default); Console.WriteLine(readFile); Console.ReadKey(); } } }
将字符串添加到指定的文件中去 AppendAllText ;判断指定路径的文件是否存在File.Exists(Path)
时间: 2024-10-20 07:27:28