Not sure if this is possible or not?

I need contents of a file directory from another server in order to make a photogallery on another server.

Let's say I have a Folder on server1 named "folderName1" and the contents in the folder are images, like:

2005-14-05-this-that.jpg
2005-14-06-this-that.jpg
2005-14-07-this-that.jpg
2005-14-08-this-that.jpg
2005-14-09-this-that.jpg....

In order to make use this gallery script, I need to get a text file with this information on it.. Some folders I have 1000's of photos in them and it takes to long to write them all down..

Wondering if there is a shortcut to GET all contents from a folder and spit them out in a text file??

Thanks!!

link|improve this question

76% accept rate
feedback

3 Answers

up vote 0 down vote accepted

http://php.net/manual/en/function.readdir.php

place a script on server1 (perhaps in each directory that has photo's) called 'imagelist.php'. This script loops all files according to the function I placed above and echoes every image on it's own line.

Then server2 could request this file using file_get_contents() and loop everyline and use the filenames to create a gallery.

link|improve this answer
Perfect! Great thinking guys!! That makes sense. I will give it a try!! – eberswine May 9 '11 at 14:41
good luck, the function is pretty easy to understand, just make sure you skip any directories (is_dir()) and files name '.' and '..' (which are also returned by this function: see example #2 on php.net) – PENDO May 9 '11 at 14:43
Awesome! Thanks for the heads up! – eberswine May 9 '11 at 14:50
feedback

It's possible only when folder is in ur server.

link|improve this answer
he clearly states that some of HIS servers have over 1000s of images ;-) – PENDO May 9 '11 at 14:35
feedback

If the server containing the images is in your control, you can have a PHP script list out all the image names by using readdir() function. Then you call this script from the other server and read/parse all the files names.

If you dont control the server hosting the files then this is not really possible unless they have directory listing enabled on that images directory.

link|improve this answer
I guess great minds think alike ;-) – PENDO May 9 '11 at 14:32
seems like it :) – Sabeen Malik May 9 '11 at 14:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.