我一开机启动 程序随系统启动了, 我用FileStream去写日志到文件
string strdir = System.Windows.Forms.Application.StartupPath;
string STR_FILENAME_LOG = strdir + @"\test.log";
fs = new FileStream(STR_FILENAME_LOG, FileMode.Append);
byte[] byteInfo = Encoding.Default.GetBytes(strDataTime);
// 写入自定义日志
fs.Write(byteInfo, 0, byteInfo.Length);
//清空缓冲区、关闭流
fs.Flush();
fs.Close();
但是开机没有打印日志 是怎么回事啊
你开机的方式是什么?windows 服务?
捕捉一下异常,看是否产生了异常信息。
@dudu: 没有什么异常消息 我做了异常捕捉 程序是写入注册表run 运行的 随系统启动运行的
程序是写入注册表run 运行的 随系统启动运行的