上传时重命名文件

时间:2012-06-22 11:10:11

标签: php

我在尝试上传文件时遇到问题

第一次将文件名从temp移动到相应的目录

但我再次尝试上传一个不同的文件,其名称应该重命名 第一次上传文件

使用date_somefilename.csv并将文件名设置为其原始状态

例如一个文件test.csv,我首次上传它将上传到 对应的目录为

test.csv,当我上传一个名为test.csv

的不同csv文件时

我需要得到

test.csv(最新上传的文件)

06222012130209_test.csv(首次上传文件)

代码在

之下
$place_file = "$path/$upload_to/$file_name";     



if (!file_exists('uploads/'.$upload_to.'/'.$file_name)) 
 {

move_uploaded_file($tmp, $place_file);  


}else{

 move_uploaded_file($tmp, $place_file); 
 $arr1 = explode('.csv',$file_name);
  $todays_date =  date("mdYHis");
   $new_filename = $todays_date.'_'.$arr1[0].'.csv';
  echo  $str_cmd = "mv " . 'uploads/'.$upload_to.'/'.$file_name . " uploads/$upload_to/$new_filename";
   system($str_cmd, $retval); 
} 

5 个答案:

答案 0 :(得分:2)

请参阅代码中的注释。

$place_file = "$path/$upload_to/$file_name";     

if (!file_exists($place_file)) {
    move_uploaded_file($tmp, $place_file);  
} else {
    // first rename
    $pathinfo = pathinfo($place_file);
    $todays_date = date("mdYHis");
    $new_filename = $pathinfo['dirname'].DIRECTORY_SEPARATOR.$todays_date.'_'.$pathinfo['basename'];
    rename($place_file, $new_filename)
    // and then move, not vice versa
    move_uploaded_file($tmp, $place_file); 
} 

DIRECTORY_SEPARATOR是php常量。值为'/'或'\',具体取决于操作系统。

pathinfo()是php函数,返回有关path:dirname,basename,extension,filename的信息。

答案 1 :(得分:1)

怎么样......

$place_file = "$path/$upload_to/$file_name";     

if (file_exists($place_file)) {
   $place_file = date("mdYHis")."_".$file_name;
}

if (!move_uploaded_file($tmp, $place_file)) {
   echo "Could not move file";
   exit;
}

答案 2 :(得分:1)

如果文件已存在,我不会在文件中添加日期。相反,我只想在它的末尾添加一个数字。保持简单。

$counter = 0;
do {
    // destination path path
    $destination = $path.'/'.$upload_to.'/';

    // get extension
    $file_ext = end(explode('.', $file_name));

    // add file_name without extension
    if (strlen($file_ext))
        $destination .= substr($file_name, 0, strlen($file_name)-strlen($file_ext)-1);

    // add counter
    if ($counter)
        $destination .= '_'.$counter;       

    // add extension
    if (strlen($file_ext))
        $destination .= $file_ext;

    $counter++;
while (file_exists($destination));

// move file
move_uploaded_file($tmp, $destination);

答案 3 :(得分:0)

$target = "uploads/$upload_to/$file_name";
if (file_exists($target)) {
    $pathinfo = pathinfo($target);
    $newName = "$pathinfo[dirname]/" . date('mdYHis') . "_$pathinfo[filename].$pathinfo[extension]";
    rename($target, $newName);
}
move_uploaded_file($tmp, $target); 

请注意:Security threats with uploads

答案 4 :(得分:0)

这样的事情怎么样?

<?php

$tmp = '/tmp/foo'; // whatever you got out of $_FILES
$desitnation = '/tmp/bar.xyz'; // wherever you want that file to be saved

if (file_exists($desitnation)) {
  $file = basename($destination)
  $dot = strrpos($file, '.');

  // rename existing file to contain its creation time
  // "/temp/bar.xyz" -> "/temp/bar.2012-12-12-12-12-12.xyz"
  $_destination = dirname($destination) . '/'
      . substr($file, 0, $dot + 1)
      . date('Y-m-d-H-i-s', filectime($destination))
      . substr($file, $dot);

  rename($destination, $_destination);
}

move_uploaded_file($tmp, $destination);