保存文件夹PHP中的文件

时间:2012-05-12 10:13:42

标签: php html

我在php中创建了一个文件名读取器,用于读取文件夹中的文件, 现在我想添加一个功能,让我通过网络阅读器下载此文件,让我选择我想保存的地方

我真的不知道脚本的问题是什么。

任何有想法的人? 这就是我现在所拥有的。

的index.php

<?php
$mydir = "images/";
if ($handle = opendir($mydir)) {
    while (false !== ($file = readdir($handle))) {
        if ($file != '.' && $file != '..') {
?>
           <a href="download.php?f=<?php echo $file ?>" target="_blank"><?php echo $file ?></a>
<?php
        }
    }
    closedir($handle);
}
?>

的download.php

<?php $filename = $_GET['f'];
// set this to the path where your zipped files are located
$filepath = "images" . $filename;
// a little security
if(strpos($filename, '..') !== false || realpath($filepath) != $filepath) die();
if (file_exists($filepath)){
    // make sure the browser knows what it's getting, and what to do with it
    header('Cache-Control: public');
    header('Content-Type: application/zip');
    header('Content-Disposition: attachment; filename=' . $filename);
    readfile($filepath);
    die(); 
} else {
    die('Error: File not found.');
}

?>

1 个答案:

答案 0 :(得分:0)

尝试使用$filepath = "images/" . $filename;代替$filepath = "images" . $filename;