FSO读取txt文件的操作方法

来源:爱站网时间:2022-04-25编辑:网友分享
FSO读取txt文件的操作方法是怎样的,你了解吗?带着这个问题,爱站技术频道小编整理了相关资料,如果你感兴趣的话,千万不要错过这篇文章,一定不会让你失望的。


function ReadFile(filename)
on error resume next
err.clear
'ASP的一种校错方法
Const ForReading = 2
Const Create = false
Dim FSO
DIM TS
DIM filepath
DIM thefile
Dim content

'---------------操作地址

Set FSO=server.createobject("scripting.filesystemobject")
filepath=server.MapPath("temp") ./记录本存放的文件夹

if err.number0 then
response.Write "目录不存在"
response.End
end if

'filename="test.txt" ---------test.txt为你从数据库里读出的文件名
thefile=filepath&"/"&filename
Set TS = FSO.OpenTextFile(thefile,1)

do until Ts.AtEndOfStream
Response.Write (""&TS.ReadLine&"")
response.write("
")
loop

Set TS = Nothing
Set FSO = Nothing
end function
%>

dim id
dim filename
id=6
Set rs=Server.CreateObject("ADODB.Recordset")
sql="select * from yuan where id="&id
rs.open sql,cn,1,1
filename=rs("fileload")
%>
FSO读取txt文件的操作方法不知道朋友们都看完没有。在我们爱站技术频道网站,有很多不同类型的技术文章,有需要的小伙伴可以随时来关注收藏我们网站。

上一篇:ASP程序编写文本文件代码过程

下一篇:FSO获取图像文件信息的方法

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载