Quote:
Originally Posted by The Quicken Thank you, yes it's on apache. I want a link to a drive that has multiple media files, purpose is to list files, not make available for DL. |
Well you still haven't specified if your running Linux or Windows, but assuming it's Linux you could host a text file on the server and just have any files located in a specified folder appended to the text file.
You'd have to setup a script file with something like
Quote:
|
ls -al | grep {print 4$} > /var/httpd/www/filelist.txt
|
The grep part you'd have to change to whatever fields you want displayed in the text file, or if you want all information in there just take out the grep part. Make sure to change the file to executable and then you could also setup a cron job to have the script run every 15 minutes or so.
If you're running windows, you could do something similar but I'm not sure how you would go about that off the top of my head.