myio.cs
来自「本软件是一个以FTP形式上传下载资料的软件」· CS 代码 · 共 19 行
CS
19 行
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace ftpTransport
{
class MyIO
{
public static void WriteLog(string logInfo)
{
string curPath = Directory.GetCurrentDirectory() + "\\log.txt";
StreamWriter sw = new StreamWriter(curPath, true);
sw.WriteLine(logInfo +" \t " +DateTime.Now.ToString());
sw.Close();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?