TextStream.Skip()
|
|
Syntax |
|
The Skip() method skips num characters. |
<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.Skip(5);
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 :
-
-
-
-
-
-
-
-
-
-
-
-
-
|
|