Click here to Skip to main content
15,881,898 members
Articles / Programming Languages / Javascript

Find Files with JavaScript

Rate me:
Please Sign up or sign in to vote.
4.85/5 (38 votes)
25 Mar 20021 min read 494.9K   13.3K   56   72
Find files or directory in client or server site with JavaScript

Image 1

Introduction

Maybe you want to have list of server or client files in your web page to uploading or downloading or changing. JScript allow you to do this. You can capture all files type, size, properties in all directories and use them easily. In this sample, I use this technique for searching files in local hard drive.

Necessary Attention: Your browser should have access to run ActiveX objects. If receive a error message telling "Automatic Server Can't Create Object", you most go to Internet Option and in security tab, select custom level in Local part and change options to get effect.

ActiveX Objects

For working with Files and directory, you should make a server object as Scripting.FileSystemObject, then with GetDirectory() method can get a directory object. If you want to know whether the directory exists, use FolderExists().

JavaScript
var Fo = new ActiveXObject("Scripting.FileSystemObject");

Enumerator

Enumerators are an array of Directory or File objects such that you can use methods to get special file or sub directory that are in defined path. Enumerators have some methods I have called like atEnd() and moveNext() in my sample.

JavaScript
function FindFile(FOo)
{
    //Get array of files including in FOo directory object
    var FSo = new Enumerator(FOo.Files);
    
    // Getting all files in FSo object
    for (i=0;!FSo.atEnd();FSo.moveNext())

    ...
}

Files Object Properties

For getting a object that is in Enumerator object, you must use item() and it returns a file or directory object that is in current place of Enumerator. Then, you can use Files properties that are listed:

  • Attributes
  • DateCreated
  • DateLastAccessed
  • DateLastModified
  • Drive
  • Name
  • ParentFolder
  • Path
  • ShortName
  • ShortPath
  • Size
  • Type
JavaScript
FSo.item().name // File name
FSo.item().type // Description defining the file extension
FSo.item().size // File size in byte

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
Web Developer
Iran (Islamic Republic of) Iran (Islamic Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: error Pin
Member 965495819-Feb-14 18:15
Member 965495819-Feb-14 18:15 
Questionthanks mate Pin
ivan coene17-Jun-13 3:54
ivan coene17-Jun-13 3:54 
GeneralMy vote of 5 Pin
panterall19-Jun-12 4:42
panterall19-Jun-12 4:42 
QuestionHow to add view option Pin
RishiRaut23-Jan-11 7:10
RishiRaut23-Jan-11 7:10 
QuestionHow to upload these files Pin
dsfdfdfdf343434322-Sep-10 3:31
dsfdfdfdf343434322-Sep-10 3:31 
QuestionCan this script be used to search .avi files? Pin
Dave Herrell25-Dec-09 7:09
Dave Herrell25-Dec-09 7:09 
GeneralMy vote of 1 Pin
dvg.madhu7-Oct-09 20:19
dvg.madhu7-Oct-09 20:19 
GeneralUpdate!! - Export to excel spreadsheet added!! Pin
Uno198216-Sep-09 10:14
Uno198216-Sep-09 10:14 
GeneralFIXED!!! New Windows Update Breaks ActiveX security fuctions Pin
Uno198215-Sep-09 10:04
Uno198215-Sep-09 10:04 
GeneralFixed all bugs (toggle and path reset) known issue with script timeout Pin
Uno19822-Sep-09 10:47
Uno19822-Sep-09 10:47 
GeneralRe: Fixed all bugs (toggle and path reset) known issue with script timeout Pin
lunar-fifth14-Sep-09 21:32
lunar-fifth14-Sep-09 21:32 
GeneralRe: Fixed all bugs (toggle and path reset) known issue with script timeout Pin
Uno198215-Sep-09 7:49
Uno198215-Sep-09 7:49 
GeneralThere are 2 bugs left in my source code. Pin
Uno198214-Jul-09 5:43
Uno198214-Jul-09 5:43 
QuestionHI, can i link results to the files!? Pin
ALEX CHIHAI16-Jun-09 10:16
ALEX CHIHAI16-Jun-09 10:16 
AnswerRe: HI, can i link results to the files!? Pin
Uno198214-Jul-09 5:35
Uno198214-Jul-09 5:35 
GeneralRe: HI, can i link results to the files!? Pin
RishiRaut23-Jan-11 7:06
RishiRaut23-Jan-11 7:06 
GeneralAdvanced Search including files from subdirectories, progressbar and delete function Pin
Uno19827-Jan-09 6:38
Uno19827-Jan-09 6:38 
GeneralRe: Advanced Search including files from subdirectories, progressbar and delete function Pin
Uno198222-Apr-09 4:33
Uno198222-Apr-09 4:33 
QuestionCan the results be pushed to an Excel spreadhseet? Pin
popsui14-Oct-08 10:42
popsui14-Oct-08 10:42 
AnswerRe: Can the results be pushed to an Excel spreadhseet? [modified] Pin
Uno198231-Dec-08 9:22
Uno198231-Dec-08 9:22 
AnswerRe: Can the results be pushed to an Excel spreadhseet? Pin
Uno198216-Sep-09 10:11
Uno198216-Sep-09 10:11 
GeneralI can see nothing happenned=( Pin
nguk30-May-08 16:35
nguk30-May-08 16:35 
Generalno file found or search in progress [modified] Pin
crichardson1828-Apr-08 7:23
crichardson1828-Apr-08 7:23 
GeneralRe: no file found or search in progress Pin
Uno198213-Aug-09 9:42
Uno198213-Aug-09 9:42 
GeneralRe: no file found or search in progress Pin
crichardson1824-Aug-09 5:57
crichardson1824-Aug-09 5:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.