Created
January 13, 2011 09:21
-
-
Save taka2/777622 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $.fileCreate("test.txt", function (writeStream) { | |
| var FILE_IOMODE_FOR_READING = 1; | |
| $.fileOpen("test.wsf", FILE_IOMODE_FOR_READING, function (textStream){ | |
| while(!textStream.AtEndOfStream) { | |
| writeStream.WriteLine(textStream.ReadLine()); | |
| } | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment