delphi 怎么新建文件
5个回答
展开全部
var
f:Text;
begin
assign(f, 'c:\tmp.txt');
rewrite(f);//新建或者重写原有的文件
close(f);
end;
就这样。
f:Text;
begin
assign(f, 'c:\tmp.txt');
rewrite(f);//新建或者重写原有的文件
close(f);
end;
就这样。
更多追问追答
追问
是文件夹不是文件
追答
服了你了,这都能写错,
uses SysUtils
用这个函数:function ForceDirectories(Dir: string): Boolean;
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
同意楼上的,有点笔误
myinifile.redainteger('小节名','关键字','缺省值');//读取整数型数据。
应为
myinifile.readinteger('小节名','关键字','缺省值');//读取整数型数据
创建一个文件的函数:
function FileCreate(const FileName: string): Integer;
Description
FileCreate creates a new file with the specified name. If the return value is positive, the function was successful and the value is the file handle of the new file. A return value of -1 indicates that an error occurred.
myinifile.redainteger('小节名','关键字','缺省值');//读取整数型数据。
应为
myinifile.readinteger('小节名','关键字','缺省值');//读取整数型数据
创建一个文件的函数:
function FileCreate(const FileName: string): Integer;
Description
FileCreate creates a new file with the specified name. If the return value is positive, the function was successful and the value is the file handle of the new file. A return value of -1 indicates that an error occurred.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
菜单
文件----New ...... 或 Others
文件----New ...... 或 Others
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
新建一个什么样的问题呢?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
filecreate('路径加文件名');//创建一个文件。
读写ini文件:
先在 uses 定义 Inifiles, 在 var 定义 myinifile:Tinifile;
实现部分写代码:
myinifile:=Tinifile.create('d:\1.ini');//打开D盘的 1.ini 文件。
myinifile.readstring('小节名','关键字','缺省值');//读取字符型数据。
myinifile.redainteger('小节名','关键字','缺省值');//读取整数型数据。
myinifile.readbool('小节名','关键字','缺省值');//读取逻辑型数据。
写入INI文件:
myinifile.writestring('小节名','关键字',变量或字符串值);//写入字符型数据。
myinifile.writeinteger('小节名','关键字','变量或整型数值);//写入整数型数据。
myinifile.writebool('小节名','关键字',变量或TRUE或FALSE);//写入逻辑型数
myinifile.Free;//释放INI文件
读写ini文件:
先在 uses 定义 Inifiles, 在 var 定义 myinifile:Tinifile;
实现部分写代码:
myinifile:=Tinifile.create('d:\1.ini');//打开D盘的 1.ini 文件。
myinifile.readstring('小节名','关键字','缺省值');//读取字符型数据。
myinifile.redainteger('小节名','关键字','缺省值');//读取整数型数据。
myinifile.readbool('小节名','关键字','缺省值');//读取逻辑型数据。
写入INI文件:
myinifile.writestring('小节名','关键字',变量或字符串值);//写入字符型数据。
myinifile.writeinteger('小节名','关键字','变量或整型数值);//写入整数型数据。
myinifile.writebool('小节名','关键字',变量或TRUE或FALSE);//写入逻辑型数
myinifile.Free;//释放INI文件
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询