- static void Main(string[] args)
- {
- Console.WriteLine("请输入内容:");
- string str = Console.ReadLine();
- using (StreamWriter sw = new StreamWriter(@"d:\test.txt"))
- {
- sw.WriteLine(str);
- Console.WriteLine(@"已存入D:\test.txt。");
- }
- Console.ReadKey();
- }
复制代码 因为路径里有“\”的的存在,所以用了“@”来忽略转义符。 |
|