<완전한있는 TextStream 개체 참조
WriteLine 메서드는 지정된 텍스트와있는 TextStream 파일에 개행 문자를 씁니다.
통사론
TextStreamObject.WriteLine(text)
매개 변수 | 기술 |
---|---|
text | 선택 과목. 텍스트 파일로 작성할 수 있습니다. 이 매개 변수를 지정하지 않으면 개행 문자가 파일에 기록됩니다 |
예
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile("c:\test.txt",true)
f.WriteLine("Hello World!")
f.WriteLine("How are you today?")
f.WriteLine("Goodbye!")
f.close
set f=nothing
set fs=nothing
%>
The file test.txt will look like this after executing the code above:
Hello World!
How are you today?
Goodbye!
<완전한있는 TextStream 개체 참조