龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > asp编程 >

asp读写文件函数

时间:2012-12-31 22:56来源:未知 作者:admin 点击:
分享到:
asp教程读写文件函数 '本文章提供了二款asp文件操作函数,read打开文件读取全部内容,wirte把内容写入到一个文件。 function read(path) set mf=server.createobject(scripting.filesystemobject) set mt=mf.op

asp教程读写文件函数
'本文章提供了二款asp文件操作函数,read打开文件读取全部内容,wirte把内容写入到一个文件。
function read(path)
 set mf=server.createobject("scripting.filesystemobject")
 set mt=mf.opentextfile(server.mappath(path),1,true,-2)
 if mt.atendofstream=true then
  read=""
 else
  read=mt.readall
 end if
 mt.close
 set mt=nothing
 set mf=nothing
end function
'#######################################################################################
function write(path,str)
 set mf=server.createobject("scripting.filesystemobject")
 set mt=mf.opentextfile(server.mappath(path),8,true,-2)
 mt.write(str)
 mt.close
 set mt=nothing
 set mf=nothing
end function


收藏文章
表情删除后不可恢复,是否删除
取消
确定
图片正在上传,请稍后...
评论内容为空!
还没有评论,快来抢沙发吧!

热评话题

按钮 内容不能为空!
立刻说两句吧! 查看0条评论
精彩图集

赞助商链接