在php下载后从服务器删除文件

时间:2013-06-26 12:04:32

标签: php

我使用php下载文件,我希望文件在成功完成下载后自动从服务器上删除。我在php中使用此代码。

$fullPath = 'folder_name/download.txt';

if ($fd = fopen ($fullPath, "r")) {
    $fsize = filesize($fullPath);
    $path_parts = pathinfo($fullPath);
    $ext = strtolower($path_parts["extension"]);

    header("Content-type: application/octet-stream");
    header("Content-Disposition: filename=\"".$path_parts["basename"]."\"");
    header("Content-length: $fsize");
    header("Cache-control: private"); //use this to open files directly
    $fd = fopen ($fullPath, "r");
    while(!feof($fd)) {
        $buffer = fread($fd, 2048);
        echo $buffer;
    }
    fclose ($fd);

}

unlink($fullPath);

您可以在下载后在代码中看到我取消链接文件。但如果我这样做了损坏的文件被下载。因为有时文件会在完全下载之前被删除。无论如何在php中知道客户端成功下载文件然后我可以删除它吗?任何想法都将受到高度赞赏。

7 个答案:

答案 0 :(得分:5)

据我所知,您无法使用服务器端PHP来检测客户端的下载是否已完成。似乎ignore_user_abort()是您问题的答案(见下文),否则您可能会在一段时间后删除该文件。

ignore_user_abort(true);
if (connection_aborted()) {
  unlink($f);
} 

Stackoverflow上的相关/复制:

答案 1 :(得分:1)

检查服务器和客户端文件的哈希码... 您可以使用javascript(How to calculate md5 hash of a file using javascript)将哈希码检查发送到服务器,然后检查它是否与服务器上的相同...

答案 2 :(得分:1)

如果您确实在下载(而不是上传,就像帖子中的代码所示),您可能会对专门设计用于创建文件的 tmpfile 功能感兴趣关闭描述符后立即删除。

答案 3 :(得分:1)

无法知道用户何时使用PHP下载文件,我会在请求n秒后使用队列系统删除文件:

How to Build a PHP Queue System

答案 4 :(得分:0)

检查请求,如果设置了Range HTTP标头,客户端正在下载文件,它只想一次下载一小部分数据(例如:Range:bytes = 500-999)。通常,这是由Web服务器自动处理的,但在这种情况下,您必须处理它并仅返回请求的范围。仅在客户端下载了所有部分时才将进度存储在会话中并拒绝访问。

答案 5 :(得分:0)

不确定它几乎在所有情况下都会起作用,但尝试睡眠(10);在某个特定时间内延迟删除文件的事情。

答案 6 :(得分:0)

对于大型文件,这可能是一个小小的错误但在快速连接上的小文件我使用它没有问题。

<?php
 ### Check the CREATE FILE has been set and the file exists
if(isset($_POST['create_file']) && file_exists($file_name)):
### Download Speed (in KB)
$dls = 50;
### Delay time (in seconds) added to download time 
$delay = 5; 
## calculates estimated download time
$timer = round(filesize($file_name) / 1024 / $dls + $delay); 
###Calculates file size in kb divides by download speed + 5 ?>

<iframe width="0" height="0" frameborder="0" src="<?php echo $file_name;?>"></iframe>
<h2>Please Wait, Your Download will complete in: <span id="logout-timer"></span></h2> 

使用文件值重定向到SELF?f = $ file_name

<script>setTimeout(function(){ window.location = "<?php echo $_SERVER['PHP_SELF']?>?f=<?php echo $file_name;?>";},<?php echo $timer;?>000);</script>

删除文件

     <?php 
 endif;
if (isset($_GET['f'])):
    unlink($_GET['f']);
    ### removes GET value and returns to page's original url
    echo "<script> location.replace('".$_SERVER['PHP_SELF']."')</script>"; 
    endif;?>

在var秒内为每个文件下载计时器

<script>
var seconds=<?php echo $timer;?>;function secondPassed(){var a=Math.round((seconds-30)/60);var b=seconds%60;if(b<10){b="0"+b}document.getElementById('logout-timer').innerHTML=a+":"+b;if(seconds==0){clearInterval(countdownTimer);document.getElementById('logout-timer').innerHTML="Timer"}else{seconds--}}var countdownTimer=setInterval('secondPassed()',1000);
</script>