说明(2017-7-31 16:25:06): 1. 有两种办法,第一种是用FileStream创建txt,用StreamWriter写入数据,期间还要加上判断,是否存在这个txt文件,如果不存在就创建,存在就追加写入。太麻烦了! 2. 第二种是直接File.AppendAllText(string ...
File类 1.用File.Create创建文件,会返回一个FileStream对象,如果不关闭这个对象,无法用File.AppendAllText追加文本 报错示例: File.Create("D://a.txt"); File.AppendAllText("D://a.txt", "你好"); ...
一、文件操作 1、File类的常用静态方法: void AppendAllText(string path, string contents),将文本contents附加到文件path中 bool Exists(string path)判断文件path是否存在 string[] ReadAllLin ...
分类:
其他好文 时间:
2016-09-30 01:18:52
阅读次数:
160
[HttpPost] public void notify_url() { SortedDictionary<string, string> sPara = GetRequestPost(); System.IO.File.AppendAllText(Server.MapPath("~/App_Da ...
分类:
其他好文 时间:
2016-05-11 18:09:36
阅读次数:
134
创建文件Dim strFile As String = String.Format("C:\ErrorLog.txt", DateTime.Today.ToString("dd-MMM-yyyy"))File.AppendAllText(strFile, String.Format("Error M...
分类:
Web程序 时间:
2016-01-08 13:09:26
阅读次数:
509
string pathname = dt.ToString().Replace(":", ""); string str = richTextBoxResult.Text; str = str.Replace("\n", "\r\n"); //关键 File.AppendAllText(@"D...
分类:
其他好文 时间:
2015-08-27 01:57:28
阅读次数:
143
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
string pat...
分类:
移动开发 时间:
2014-08-06 11:52:51
阅读次数:
191
一个简单的.net写日志方法 - 可能的改进点昨天有个朋友在评论的时候问我如下代码在web开发中有什么问题public void Log(string msg){System.IO.File.AppendAllText(Server.MapPath("~/log.txt"), msg);}这里能说的...
分类:
Web程序 时间:
2014-07-30 12:07:13
阅读次数:
288
1.新建webapplication,添加webForm拖拽两个TextBox,一个Button,Button单击事件中写File.AppendAllText("f:/a.txt",TextBox1.Text+":"+TextBox2.Text+"
");2.新建winform窗体,拖拽WebBro...
分类:
Web程序 时间:
2014-07-22 23:13:34
阅读次数:
343
File类的常用静态方法:void AppendAllText(string path, string contents),将文本contents附加到文件path中bool Exists(string path)判断文件path是否存在string ReadAllText(string path)...
分类:
其他好文 时间:
2014-07-14 20:19:03
阅读次数:
279