码迷,mamicode.com
首页 > Windows程序 > 详细

【转】delphi 保存到txt文件

时间:2016-12-24 17:09:17      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:directory   style   procedure   extra   href   save   tar   log   .com   

procedure TForm1.btn1Click(Sender: TObject);
var
  astr: string;
  sList: TStrings;
  path: string;
begin
    sList := TStringList.Create;
    path := C:\a\b.txt;

    try
       if not DirectoryExists(ExtractFilePath(path)) then
       begin
         ForceDirectories(ExtractFilePath(path));
       end;
       if FileExists(path) then
       begin
         sList.LoadFromFile(path);
       end;
       sList.Add(FormatDateTime(YYYY-MM-dd, now) +:+ #13#10 + mmo1.Text);
       sList.SaveToFile(path);
    finally
      sList.Free;
    end;
end;

转自:http://blog.sina.com.cn/s/blog_4bc47d230101eief.html

【转】delphi 保存到txt文件

标签:directory   style   procedure   extra   href   save   tar   log   .com   

原文地址:http://www.cnblogs.com/chuangyiyuan/p/6217380.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!