1

我的代码:

$zip_name="download.zip";
$ctype="application/zip";

// required for IE, otherwise Content-disposition is ignored
if(ini_get('zlib.output_compression'))
ini_set('zlib.output_compression', 'Off');

header("Pragma: public"); // required
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false); // required for certain browsers
header("Content-Type: $ctype");

// change, added quotes to allow spaces in filenames

header("Content-Disposition: attachment; filename=\"".basename($zip_name)."\";" );
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($zip_name));
readfile("$zip_name");

现在文件下载到下载文件夹。

我需要下载 D: 驱动器中的所有文件。

4

1 回答 1

11

这是不可能的。网络服务器无法告诉客户端保存文件的位置。想象一下,如果一个站点可以为文件保存操作指定一个确切的位置,那么安全隐患。

请参阅RFC 2183,第 2.3 节

接收 MUA 不应该尊重
文件名参数中可能存在的
任何目录路径信息。文件名
应仅被视为终端组件。目录路径的可移植
规范将来可能会通过单独的 Content-Disposition 参数来完成,但
在本草案中没有对此做出任何规定。

于 2012-08-11T20:41:58.460 回答