Articles   Dev Forums   Personalize   Favorites   Member Login        Active Users:  601
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Friday, July 18, 2008
Home
Articles & Samples
Dev Search
Dev Forum
Add a Listing
Sample Chapters
Directory Feed
Link to US
Contact

Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts

ESET
ASP Directory
Applications
Articles & Samples
Components
Developer Sites
Knowledge Base
Sample Chapters
WebCasts
XML Directory
Applications
Articles & Samples
Developer Sites
Error, Bugs & Fixes
Downloads
Introduction
Knowledge Base
Sample Chapters
WebCasts

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > ASP > File Management > FileSystemObject
Search
DevASP

What's New
What's Hot

Working with Drives, Folders and Files in ASP       
Total Hits: 238  |  Today: 0 Author: Faisal Khan       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article is first of a series of articles about working with drives, folders and files using ASP. In this article we'll learn how to get hold of Drives collection which FileSystemObject provides us, then we'll use this handle to display a list of all drives connected to our computer with their detailed info. These drives may be fixed hard disks, removable drives like floppy drives, CD-ROM drives or even network drives. We'll then use the handle to a drive to access root folder for that drive...

The wonders of the File System Object       
Total Hits: 228  |  Today: 0 Author: Chris Payne       Rating:  
Read Reviews | Write Review |              Your Rating: 

The file system object (FSO) model provides a collection of very handy objects for accessing a computer's file system. What does this mean? It means that you can manipulate files, folders, drives, etc., all through ASP pages. You can write or delete text, store information, move files around, and perform searches....

ASP Directory Listing       
Total Hits: 2525  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This example shows how to read a directory structure in ASP.ASP provides access to files on the host server via the FileSystemObject. It is a generic object that can be used to access existing files and folders or to create new ones.It also provides information on drives, paths and special file types but the focus for this example is on file and folder objects.

...

The File System Object Article       
Total Hits: 2114  |  Today: 0 Author: David Nishimoto       Rating:  
Read Reviews | Write Review |              Your Rating: 

The File System Object ArticleIn reference select "window scripting runtime" component. 1)cp - Copies a Source File to a Target File. Setting bCopyIfOpen allows you to copy an open file....

Writing to a text file in an ASP Page       
Total Hits: 3731  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 


Learn how to write on a text file with the help of FileSystemObject within an ASP Page...

Reading from a Text File in an ASP page.       
Total Hits: 2521  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 


This Example shows how to read from a text file in an ASP Page using Scripting.FileSystemObject...

FIX: Cannot Access Remote Files with the FileSystemObject       
Total Hits: 9409  |  Today: 1       Rating:  
Read Reviews | Write Review |              Your Rating: 

When accessing remote resources with the FileSystemObject through Active Server Pages (ASP), one of the following errors occurs: Microsoft VBScript runtime error '800a004c' Path not found Microsoft VBScript runtime error '800a0046' Permission denied Server object error 'ASP 0177 : 800a0046' Server.CreateObject Failed...

Browsing Directories With ASP       
Total Hits: 1742  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

There are many situations where it may be useful to list the contents of a directory on your web server; for administration or collaborative work purposes for example...

Directory Attributes       
Total Hits: 877  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

The properties of a directory are readable and displayable in asp. This is especially useful when you have directories that get updated frequently and you want the date they were last modified to display on a web page....

File System Function Library       
Total Hits: 766  |  Today: 0 Author: James Lindėn       Rating:  
Read Reviews | Write Review |              Your Rating: 

The purpose of this script is to make working with the file system easier. It includes functions for manipulating directories and files. Whether you want to use this script for a web based file manager, or simply want to make working with text files easier, the script has functions which will streamline your code....

Using the FileSystemObject       
Total Hits: 797  |  Today: 0 Author: Guo Xu       Rating:  
Read Reviews | Write Review |              Your Rating: 

I'll try to show you how to use and where to use the FileSystemObject. So the first thing we ask ourselve is: What can we do with the FileSystemObject?...

Reading From a Text File       
Total Hits: 573  |  Today: 0 Author: Programmersresource       Rating:  
Read Reviews | Write Review |              Your Rating: 

When working with files you use the built in component: FileSystemObject. This component comes packed with lots of nice methods you can use to create, delete and manipulate files and folders. Here, we'll show how to READ from a text file that has already been created....

Q299871 - HOW TO: Work with a Text File in an ASP Page       
Total Hits: 1914  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This step-by-step procedure demonstrates how to get started using the FileSystemObject (FSO) object to work with text files on a Web server. In some situations, you want to be able to store and retrieve data from a text file for your Web applications. Common uses for text files include applications that log errors or store information about site visitors, or database applications that write data to a structured text file (such as in a .csv format), which can then be read by an FSO script and use...

Working with Drives, Folders and Files using ASP       
Total Hits: 3651  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Article on accessing drives, folders and files with ASP; iterating though drives, folders and files collections, reading content of a file and more. Also provides detailed listing of all properties and methods of FileSystemObject, Drive, Folder, File and TextStream objects....

In a World Of Databases, ASP and Text Files       
Total Hits: 1243  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Plain text files offer some advantages for online applications using changing data. The idea of this series of articles is to explain some...

File Last Modified Script       
Total Hits: 257  |  Today: 0 Author: Derek Truman       Rating:  
Read Reviews | Write Review |              Your Rating: 

Displaying the date last modified is a simple thing to do. All it takes is calling up the ol File Scripting Object and there you have it! The last modified date, DYNAMICALLY! Every time the file is modified this info is written into the file....

PRB: When You Use the FileSystemObject Object Error 800a0035        
Total Hits: 1490  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

When you use the FileSystemObject object from an Active Server Pages (ASP) page, you may receive one of the following error messages: Server object error 'ASP 0177 : 800a0035'
Server.CreateObject Failed
filename.asp, line xx
The operation completed successfully.
-or-
Microsoft VBScript runtime (0x800A0035)
File not found
filename.asp, line xx...

Generating an XML file of your website's folders/files       
Total Hits: 99  |  Today: 0 Author: xefteri       Rating:  
Read Reviews | Write Review |              Your Rating: 

Using the File System Object (FSO) we can traverse through our website's contents and write them out in a nicely nested form in an XML file. We can then use that file for example, in a content management system or a TreeView control....

ASP File Operations       
Total Hits: 106  |  Today: 0 Author: brainjar       Rating:  
Read Reviews | Write Review |              Your Rating: 

ASP provides access to the web server's file system by defining several objects representing drives, folders, files, etc. This article demonstrates the coding basics needed to perform the most common file operations: creating, deleting, reading from and writing to a file....

File and Folder Checkers.       
Total Hits: 99  |  Today: 0 Author: brettb       Rating:  
Read Reviews | Write Review |              Your Rating: 

Here are two VBScript functions that check to see if a specified file or folder exist on the server. As such they can be used to improve error handling on ASP pages that read or write files from disk....


1  2  Next >> 

DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com