473,406 Members | 2,956 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

directory listing clientside

New to javascript.
Is it possible to use javascript to scan a directory client side.
If so, could someone point me in the general direction of information on how
to. I do not know what keywords I should be googling for :(

I am aiming to return array of image files to use in a 'slideshow' script
that will be cut to cd.
I have already found a slideshow script, but now need to populate array, and
will be using php to ultimately write the html code with the javascript
embede for user to save.

TIA

PhilM
Jul 20 '05 #1
7 3273
In article <3f***********************@news.optusnet.com.au> , "PhilM"
<ph***@nospam.com.am> writes:
New to javascript.
Is it possible to use javascript to scan a directory client side.
No. Not in a default security environment.
If so, could someone point me in the general direction of information on how
to. I do not know what keywords I should be googling for :(

I am aiming to return array of image files to use in a 'slideshow' script
that will be cut to cd.
I have already found a slideshow script, but now need to populate array, and
will be using php to ultimately write the html code with the javascript
embede for user to save.


If the images are on the CD, and PHP is generating it all, have PHP generate a
list of the files in the folders and then write it as a JS array. Problem
solved.
--
Randy
Jul 20 '05 #2
PhilM wrote:
New to javascript.
Is it possible to use javascript to scan a directory client side.
If so, could someone point me in the general direction of information on how
to. I do not know what keywords I should be googling for :(

I am aiming to return array of image files to use in a 'slideshow' script
that will be cut to cd.
I have already found a slideshow script, but now need to populate array, and
will be using php to ultimately write the html code with the javascript
embede for user to save.

TIA

PhilM


No, client-side JavaScript has no access to the local file system in the default
security environment.

--
| Grant Wagner <gw*****@agricoreunited.com>

* Client-side Javascript and Netscape 4 DOM Reference available at:
*
http://devedge.netscape.com/library/...ce/frames.html

* Internet Explorer DOM Reference available at:
*
http://msdn.microsoft.com/workshop/a...ence_entry.asp

* Netscape 6/7 DOM Reference available at:
* http://www.mozilla.org/docs/dom/domref/
* Tips for upgrading JavaScript for Netscape 7 / Mozilla
* http://www.mozilla.org/docs/web-deve...upgrade_2.html
Jul 20 '05 #3

"HikksNotAtHome" <hi************@aol.com> wrote in message
news:20***************************@mb-m27.aol.com...
In article <3f***********************@news.optusnet.com.au> , "PhilM"
<ph***@nospam.com.am> writes:
New to javascript.
Is it possible to use javascript to scan a directory client side.
No. Not in a default security environment.
If so, could someone point me in the general direction of information on howto. I do not know what keywords I should be googling for :(

I am aiming to return array of image files to use in a 'slideshow' script
that will be cut to cd.
I have already found a slideshow script, but now need to populate array, andwill be using php to ultimately write the html code with the javascript
embede for user to save.


If the images are on the CD, and PHP is generating it all, have PHP

generate a list of the files in the folders and then write it as a JS array. Problem
solved.
--
Randy


PHP on server can access a users PC directory? I didn't think this was
possible.

The aim is to ultimately create plain html file(with embedded javascript)
for the user to place above a directory of images on their hard drive, that
they can then cut to disk, and use on any comp as a presentation kind of
thing.

PhilM
Jul 20 '05 #4

"Grant Wagner" <gw*****@agricoreunited.com> wrote in message
news:3F***************@agricoreunited.com...
PhilM wrote:
New to javascript.
Is it possible to use javascript to scan a directory client side.
If so, could someone point me in the general direction of information on how to. I do not know what keywords I should be googling for :(

I am aiming to return array of image files to use in a 'slideshow' script that will be cut to cd.
I have already found a slideshow script, but now need to populate array, and will be using php to ultimately write the html code with the javascript
embede for user to save.

TIA

PhilM
No, client-side JavaScript has no access to the local file system in the

default security environment.

For clarification, by local file system, do you mean server, or the users
machine?
(local to web page, or local to client :)
If server, then there is hope, as I do not want to access a server
directory. (I could do that with php)

PhilM
Jul 20 '05 #5
In article <3f***********************@news.optusnet.com.au> , "PhilM"
<ph***@nospam.com.am> writes:
PHP on server can access a users PC directory? I didn't think this was
possible.
No, I thought the images were included in the CD.
The aim is to ultimately create plain html file(with embedded javascript)
for the user to place above a directory of images on their hard drive, that
they can then cut to disk, and use on any comp as a presentation kind of
thing.


<URL:
http://msdn.microsoft.com/library/de...n-us/script56/
html/sgprogrammingfilesystemobject.asp />

Will show you how, in IE, to get a file listing, provided the user allows the
ActiveX to run.
--
Randy
Jul 20 '05 #6
PhilM wrote:
New to javascript.
Is it possible to use javascript to scan a directory client side.
If so, could someone point me in the general direction of information on
how to. I do not know what keywords I should be googling for :(
This question is asked about once a day in this very newsgroup.

I suggest you just read it.

I am aiming to return array of image files to use in a 'slideshow' script
that will be cut to cd.
I have already found a slideshow script, but now need to populate array,
and will be using php to ultimately write the html code with the
javascript embede for user to save.

TIA

PhilM


Jul 20 '05 #7
PhilM wrote:
No, client-side JavaScript has no access to the local file system in the

default
security environment.

For clarification, by local file system, do you mean server, or the users
machine?
(local to web page, or local to client :)
If server, then there is hope, as I do not want to access a server
directory. (I could do that with php)

PhilM


I thought it was fairly clear... client-side JavaScript has no access to the
local file system. Since client-side JavaScript executes on the client, the file
system local to the client is the client's file system.

--
| Grant Wagner <gw*****@agricoreunited.com>

* Client-side Javascript and Netscape 4 DOM Reference available at:
*
http://devedge.netscape.com/library/...ce/frames.html

* Internet Explorer DOM Reference available at:
*
http://msdn.microsoft.com/workshop/a...ence_entry.asp

* Netscape 6/7 DOM Reference available at:
* http://www.mozilla.org/docs/dom/domref/
* Tips for upgrading JavaScript for Netscape 7 / Mozilla
* http://www.mozilla.org/docs/web-deve...upgrade_2.html
Jul 20 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Dean | last post by:
Hi I've got a question relating to using Javascript on an Intranet. I have a directory with a list of files in the format week36.xls, week37.xls and I want to write a script that will scan...
19
by: SU News Server | last post by:
I've struggled with this for quite a while and I'm am just not sure what is going on. I have the following code import os def buildList( directory='/Users/mkonrad' ) dirs = listing =...
2
by: Tom | last post by:
I need to get a directory listing through http. If I put the directory path in the browser address bar such as http://somewebpage.com/subdir I get the listing of the directory. Of course this is...
8
by: gil | last post by:
Is it possible to prevent a browser from listing the entire contents of a folder? The site, is hosted on my ISP with the following layout- site/ "user name from ISP" pagefile (dir)...
2
by: ngr | last post by:
I used to use the DirListox control in VB6 but this is no longer supported in VB.NET. What I want to do: I want to take a directory listing and show any subdirectories in a list. When you click...
8
by: dougawells | last post by:
Hi - I'm hoping for help with the auto-generation of a hyperlinked listing of all files in a directory. The server I use does not auto-generate this. So, when someone comes to this directory and...
7
by: epikto | last post by:
I have a mapped share that I am trying to get a listing of all the files that it contains. I use the following code to access the contents String files = Directory.GetFiles(path); I can then...
4
by: techusky | last post by:
I have a *very* simple script written that displays the directory listing of the current working directory, but I am having some difficulty when I try to change folders. Basically, I have my $dir...
1
by: Steve | last post by:
My site is hosted on a Godaddy reseller site. Godaddy only allows the use of Curl to access remote sites. What is the method for listing a directory after connecting to the site with Curl? ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.