在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
一、创建文件 using System.IO; 我们要注意: 1、在程序中使用File类,必须使用using语句引入命令空间Systeml.IO; 二、复制文件 using System.IO; 复制文件语法重载原型为:File.Copy (String, String, Boolean); 四、设置文件的属性 File.SetAttributes(filepath,FileAttributes.Archive);//设置文件的属性 获取或者修改文件的属性,都要用到FileAttributes枚举,其枚举值如下: 创建日志文件实例:
View Code
private void button8_Click(object sender, EventArgs e) { string logPath = Environment.GetFolderPath(Environment.SpecialFolder.System) + "\\" + "omidyLog"; string logFile = logPath +"\\"+DateTime.Now.ToShortDateString()+".log"; //在系统目录下创建日志文件夹 if (!Directory.Exists(logPath)) { Directory.CreateDirectory(logPath); } //在日志文件夹下创建当天日期的日志文件 if (!File.Exists(logFile)) { //注意文件创建后要关闭它 FileStream tempFS = File.Create(logFile); tempFS.Close(); } FileStream fs = new FileStream(logFile, FileMode.Append, FileAccess.Write); StreamWriter sw = new StreamWriter(fs); sw.WriteLine(DateTime.Now.ToLongDateString() + " " + DateTime.Now.ToLongTimeString()); sw.Close(); }
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论