ASP application: Read files with stream

Source: Internet
Author: User
Tags readfile
A few days ago to write a thing inside useful to read the file.

But I do not want to use FSO, I am afraid of some space does not support.
But the network looked for a long time did not find a not to use FSO to write.

Or did one of their own.

I remember I used to use the stream when I did no component uploads and saved files.
I found that there was a LoadFromFile method. can read files.
Here's my Code.

function ReadFile (url,chartype)
Set srmobj = Server. CreateObject ("ADODB.stream")
Srmobj.type=1
Srmobj.mode=3
Srmobj.open
Srmobj.position=0
Srmobj.loadfromfile URL

srmobj.position = 0
srmobj.type=2
Srmobj.charset=chartype
Readfile=srmobj.readtext ()

End Function

Two parameters. A URL is a path to a file, as if only an absolute path. Chartype is what code the file is stored in.

Returns a string that holds the contents of the file.

This function can only read text files. Reading binary files is similar. The people who want to use it can change their own



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.