Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^2: How to view all files in the directory using CGI

by ArmandoG (Sexton)
on Dec 24, 2007 at 19:57 UTC ( [id://658920]=note: print w/replies, xml ) Need Help??


in reply to Re: How to view all files in the directory using CGI
in thread How to view all files in the directory using CGI

you are absolutly right! :o), sorry if did not read you sooner
I have been working on some code, as far as now it show me only on /cgi-bin/ folder the file I want, but I like to change it to something like a server folder but for know just C:/files/err folder for now, I can display it on the Firefox browser, but if I click a link to the file is giving me an error, but i want a dialog to say if you open it or save it to disk. heres the code :
#!c:/perl/bin/perl.exe use strict; use CGI; my $list = new CGI; my $fileDir = "./"; my @files; opendir DIR, "$fileDir" or die "Can't open $fileDir $!"; @files = grep { /\.(?:txt|err|csv)$/i } readdir DIR; closedir DIR; print $list->header("text/html"), $list->start_html("Archivos in $fileDir"), $list->p("Estos son los archivos de $fileDir"); foreach my $file (@files) { print $list->p( $list->a({-href=>$file}, $file) ); } print $list->end_html;

Replies are listed 'Best First'.
Re^3: How to view all files in the directory using CGI
by jZed (Prior) on Dec 24, 2007 at 20:02 UTC
    If your only problem is reading the right directory,then all you need to do is change the line that sets $filedir to:
    my $fileDir ='c:/file/out';
    You'll also need to figure out what relation there is between that directory and a reachable URL path.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://658920]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-19 03:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found