Microsoft® JScript FileSystemObject Object |
Language Reference Version 2 |
Provides access to a computer's file system.
y = new ActiveXObject("Scripting.FileSystemObject")
The following code illustrates how the FileSystemObject is used to return a TextStream object that can be read from or written to:In the example code, the ActiveXObject function returns the FileSystemObject (fs). The CreateTextFile method then creates the file as a TextStream object (a) and the WriteLine method writes a line of text to the created text file. The Close method flushes the buffer and closes the file.var fs = new ActiveXObject("Scripting.FileSystemObject"); var a = fs.CreateTextFile("c:\testfile.txt", true); a.WriteLine("This is a test."); a.Close();
© 1997 by Microsoft Corporation. All rights reserved.
file: /Techref/inet/iis/jscript/htm/js568.htm, 2KB, , updated: 1997/9/30 03:44, local time: 2024/11/5 10:24,
3.12.163.105:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://techref.massmind.org/techref/inet/iis/jscript/htm/js568.htm"> FileSystemObject Object</A> |
Did you find what you needed? |
Welcome to massmind.org! |
Welcome to techref.massmind.org! |
.