<อ้างอิงวัตถุไฟล์ที่สมบูรณ์
วิธี OpenAsTextStream เปิดแฟ้มที่ระบุและส่งกลับวัตถุ TextStream ในการเข้าถึงไฟล์
วากยสัมพันธ์
FileObject.OpenAsTextStream(mode,format)
พารามิเตอร์ | ลักษณะ |
---|---|
mode | ไม่จำเป็น. วิธีการเปิดไฟล์
|
format | ไม่จำเป็น. รูปแบบของไฟล์
|
ตัวอย่าง
<%
dim fs,f,ts
set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.GetFile("c:\test.txt")
Set ts=f.OpenAsTextStream(ForWriting)
ts.Write("Hello World!")
ts.Close
Set ts=f.OpenAsTextStream(ForReading)
Response.Write(ts.ReadAll)
ts.Close
set ts=nothing
set f=nothing
set fs=nothing
%>
Output:
Hello World!
<อ้างอิงวัตถุไฟล์ที่สมบูรณ์