龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > 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


精彩图集

赞助商链接