FileSystemObject Objects

The FileSystemObject Object Model,Introduction to the FileSystemObject and the Scripting Run-Time Library Reference,FileSystemObject Objects,Programming the FileSystemObject,Working with Drives and Folders,Working with Files,FileSystemObject Sample Code Home home | Other Resources other resources | Advertise with us advertise | Link to us link to us | Contact us contact | Bookmark Us!
Google
 
Where can I find good Windows Web Hosting to host my VBScript Site?
You can find good Windows Hosting which support VBScript, ASP, ASP.Net,VisualStudio.Net and MSSQL at a very reasonable low monthly fee at EasyCGI.com and DiscountASP.Net

FileSystemObject Objects

The FileSystemObject (FSO) object model contains the following objects and collections.

Object/CollectionDescription
FileSystemObjectMain object. Contains methods and properties that allow you to create, delete, gain information about, and generally manipulate drives, folders, and files. Many of the methods associated with this object duplicate those in other FSO objects; they are provided for convenience.
DriveObject. Contains methods and properties that allow you to gather information about a drive attached to the system, such as its share name and how much room is available. Note that a "drive" isn't necessarily a hard disk, but can be a CD-ROM drive, a RAM disk, and so forth. A drive doesn't need to be physically attached to the system; it can be also be logically connected through a network.
DrivesCollection. Provides a list of the drives attached to the system, either physically or logically. The Drives collection includes all drives, regardless of type. Removable-media drives need not have media inserted for them to appear in this collection.
FileObject. Contains methods and properties that allow you to create, delete, or move a file. Also allows you to query the system for a file name, path, and various other properties.
FilesCollection. Provides a list of all files contained within a folder.
FolderObject. Contains methods and properties that allow you to create, delete, or move folders. Also allows you to query the system for folder names, paths, and various other properties.
FoldersCollection. Provides a list of all the folders within a Folder.
TextStreamObject. Allows you to read and write text files.

VBScriptOnline.com - The FileSystemObject Object Model,Introduction to the FileSystemObject and the Scripting Run-Time Library Reference,FileSystemObject Objects,Programming the FileSystemObject,Working with Drives and Folders,Working with Files,FileSystemObject Sample Code