cgi perl脚本列出子目录和文件

问题描述

| 我从互联网上搜索,但只找到了针对此问题的php解决方案。如果您知道如何在Perl中执行此操作,请提供帮助。 我试图生成一个网页,显示服务器本地磁盘上目录的内容。例如,包含以下内容的页面将完成工作
<file name=\"file1\" href=\"file1\" />
    <dir name=\"dir1\" href=\"dir1/\" />
    <dir name=\"dir2\" href=\"dir2/\" />
谢谢您的帮助。     

解决方法

必须进行修改以保护脚本并对其进行屏蔽。但是,该想法可以实现为:
#!/usr/bin/perl -T

use strict;
use warnings;

use CGI;
use File::Basename;
use File::Spec;
use Path::Trim;

my $cgi = CGI->new();

if ( my $file = $cgi->param(\'file\') ) {
    open my $fh,\'<\',$file or die $!;

    print $cgi->header(
        \'-type\'           => \'application/octet-stream\',\'-attachment\'     => basename($file),\'-Content_Length\' => -s $file,);

    binmode $fh;
    print while <$fh>;
}
else {
    my $path = $cgi->param(\'path\');                                                                

    print $cgi->header(),$cgi->start_html();                                                                                               

    # remove redundant current directory and parent directory entries                                                                       
    my $pt = Path::Trim->new();                                                                                                             
    $pt->set_directory_separator(\'/\');                                                                                                      
    $path = $pt->trim_path($path);                                                                                                          

  # remove all ../ and ./ that have accumulated at the beginning of the path and                                                            
  # make the path absolute by prepending a /                                                                                                
    $path =~ s{^ (\\.\\.? /)+ }{}x;                                                                                                           
    $path = \"/$path\" unless $path =~ m{^ / }x;                                                                                              

    print $cgi->h1($path);                                                                                                                  

    opendir my $dh,$path or die $!;                                                                                                        
    my @entries = grep { $_ !~ /^ \\. $/x } readdir $dh;
    closedir $dh;

    print $cgi->start_ul();
    for my $entry ( sort { $a cmp $b } @entries ) {
        if ( -d File::Spec->catfile( $path,$entry ) ) {
            my $abs_entry = File::Spec->catfile( $path,$entry );
            my $anchor = $cgi->a( { \'href\' => \"?path=$abs_entry\" },$entry );
            print $cgi->li($anchor);
        }
        else {
            my $abs_entry = File::Spec->catfile( $path,$entry );
            my $anchor = $cgi->a( { \'href\' => \"?file=$abs_entry\" },$entry );
            print $cgi->li($anchor);
        }
    }
    print $cgi->end_ul(),$cgi->end_html();
}
    ,这应该使您开始:
#!/usr/bin/perl -Tw

use 5.008_001;
use strict;
use warnings;

print \"Content-Type: text/html; charset=utf-8\\r\\n\\r\\n\";

print <<EOF;
<html>
<head>
<title>Directory Listing</title>
</head>
<body>
<pre>
EOF

opendir(my $dir,\".\");
foreach(sort readdir $dir) {
    my $isDir = 0;
    $isDir = 1 if -d $_;

    $_ =~ s/&/&amp;/g;
    $_ =~ s/\"/&quot;/g;
    $_ =~ s/</&lt;/g;
    $_ =~ s/>/&gt;/g;

    my $type = \"[ ]\";
    $type = \"[D]\" if $isDir;
    print \"$type<a href=\\\"$_\\\" title=\\\"$_\\\">$_</a>\\n\";
}

print <<EOF;
</pre>
</body>
</html>
EOF
    

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...