TextStream.AtEndOfLine
|
|
The AtEndOfLine property returns true when the end of a line in a text line is found. |
<html> <script language="JScript"> <!-- var myFileSysObj = new ActiveXObject("Scripting.FileSystemObject");
var myInputTextStream = myFileSysObj.OpenTextFile("c:\temp\test.txt", 1, true); var myOutputTextStream = myFileSysObj.OpenTextFile("c:\temp\test2.txt", 2, true); while(!myInputTextStream.AtEndOfLine){ myOutputTextStream.Write(myInputTextStream.Read(1)); } myInputTextStream.Close(); myOutputTextStream.Close(); --> </script> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
-
-
-
|
|