C#操作文本文件之添加字符串应用的问题:如何创建一个新文本文件并向其中写入一个字符串。那么如何实现呢?WriteAllText 方法可提供类似的功能。
C#操作文本文件之添加字符串应用实例:
- using System;
- using System.IO;
- public class TextToFile
- { //C#操作文本文件之添加字符串应用
- private const string FILE_NAME = "MyFile.txt";
- public static void Main(String[] args)
- {
- if (File.Exists(FILE_NAME))
- {
- Console.WriteLine("{0} already exists.", FILE_NAME);
- return;
- }
- using (StreamWriter sw = File.CreateText(FILE_NAME))
- //C#操作文本文件之添加字符串应用
- {
- sw.WriteLine ("This is my file.");
- sw.WriteLine ("I can write ints {0}
- or floats {1}, and so on.",
- 1, 4.2);
- sw.Close();
- }
- }
- }
C#操作文本文件之添加字符串应用的基本内容就向你介绍到这里,希望对你了解和学习C#操作文本文件有所帮助。
【编辑推荐】