TextStream.SkipLine()
|
|
The SkipLine() skips the next line. |
<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);
myInputTextStream.SkipLine();
while(!myInputTextStream.AtEndOfStream){ myOutputTextStream.Write(myInputTextStream.Read(1)); } myInputTextStream.Close(); myOutputTextStream.Close(); --> </script> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
-
-
-
|
|