C# 随笔写txt
程序员文章站
2023-02-07 13:46:15
public static void WriterFile(string file) { string path = AppDomain.CurrentDomain.BaseDirectory; //如果不存在,则创建目录 if (!Directory.Exists(path + "Log/")) ......
public static void writerfile(string file)
{
string path = appdomain.currentdomain.basedirectory;
//如果不存在,则创建目录
if (!directory.exists(path + "log/"))
{
directory.createdirectory(path + "log/");
}
filestream fs = new filestream(path + "\\log/log" + datetime.now.tostring("yyyymmdd") + ".txt", filemode.append);
streamwriter streamwriter = new streamwriter(fs);
streamwriter.basestream.seek(0, seekorigin.end);
streamwriter.writeline(datetime.now.tostring() + " " + file);
streamwriter.flush();
streamwriter.close();
fs.close();
}
推荐阅读
-
不用IDE写C#的Hello World的方法
-
[C#学习笔记1]用csc.exe和记事本写一个C#应用程序
-
C# winfrom 写的一个搜索助手,可以按照标题和内容搜索,支持doc,xls,ppt,pdf,txt等格式的文件搜索
-
C# 随笔写txt
-
c# 读取txt文档和写入文档的方法
-
【算法随笔】写一个自己的名词空间
-
用 C# 写脚本 如何输出文件夹内所有文件名
-
【随笔系列】C#使用第三方SharpZipLib进行压缩、解压文件
-
C#(1)实现一键从Word文档转换TXT文本的功能
-
C# .NET的BinaryFormatter、protobuf-net、Newtonsoft.Json以及自己写的序列化方法序列化效率和序列化后的文件体积大小对比