We can find many articles related to file upload, view, download, etc. This article is written on this basic concept of uploading and managing files. File upload is a process of copying the file from your machine to the remote server. Other users of the system then share this file by viewing / downloading. What happens when I upload a file that already exists in the remote folder to which you are uploading? While discussing this problem, various other issues arises, such as:
This article gives you a solution for all the above problems and also I hope this article will be useful for you to integrate in your projects.
This article is developed with the following versions of Apache, PHP and MySQL:
Operating System: Windows Professional
To understand this article, you should have a fair knowledge of PHP. To run examples given in your machine, you need Apache, PHP, and MySQL software installed and configured.
I drafted a plan on what is needed for this file version management program. Below are some features planned:
The file manager program is designed to upload and manage files. The files are stored in a predefined folder. There are two files: file_upload_manager.php and file_display_manager.php, which performs the file operations. The former handles the file uploading and the later displays the file in the folder and also lets the user to delete the file. The source code is tested on Windows systems. Linux users, please change the folder path accordingly.
Database Design
Database name: upload
CREATE TABLE file_manager (
file_id mediumint(9) NOT NULL auto_increment,
file_name varchar(50) default NULL,
file_type varchar(20) NOT NULL default '',
file_size varchar(20) NOT NULL default '',
file_modified varchar(20) NOT NULL default '',
file_parent_id mediumint(9) default NULL,
file_image_name varchar(50) default NULL,
PRIMARY KEY (file_id),
KEY file_name (file_name),
KEY file_image_name (file_image_name)
) TYPE=MyISAM;
File Upload Manager
This program displays a menu to select the file in your system, a check box, and Upload button.
Once when the user clicks the upload button, the program checks the file for existence, and undergoes series of tests as described in the plan.
Now lets look upon the code snippets...
This variable is the destination folder path.
This path is given for a Windows based system. Please change your destination folder accordingly.
This function is called from the main program when the program encounters file exists and difference in size, date or time. This function will generate a new file name and return to the main function.
<?php
function Get_New_File_Name($file_name)
{
$sqlQuery="SELECT file_image_name
FROM file_manager
WHERE file_name LIKE '$file_name%'
AND file_parent_id=1";
$fResult=mysql_query($sqlQuery);
$Last_Version=0;
$ver=0;
if(mysql_num_rows($fResult)){
while($fRow=mysql_fetch_array($fResult)){
list($junk,$ver)=explode("_VERSION",$fRow['file_image_name']);
list($ver,$extn)=explode(".",$ver);
$Last_Version = $Last_Version > $ver ? $Last_Version : $ver;
}
}else{
$new_file_name =$file_name."_VERSION".++$Last_Version;
return $new_file_name;
}
if($Last_Version !=0){
$new_file_name=$file_name."_VERSION".++$Last_Version;
return $new_file_name;
}
}
?>
The sql query in the beginning of the function will fetch the file names of previous versions. If the sql query returns record sets, it means the file has previous versions. The while loop is executed to store version number generated, and the value obtained is stored in $Last_Version. Otherwise the new file name will be generated as file-name_VERSION1.
Next, if statement checks for $Last_Version != 0, if true, $Last_Version is incremented by 1 and new file name is assigned. The return statement will return a new file name generated to the called statement.
This function returns the file size in terms of Bytes, Kb or Mb.
<?php
function File_Size($size)
{
if($size > 104876){
return $return_size=sprintf("%01.2f",$size / 104876)." Mb";
} elseif($size > 1024){
return $return_size=sprintf("%01.2f",$size / 1024)." Kb";
} else {
return $return_size=$size." Bytes";
}
}
?>
This function is used to prompt the user to select the file from your local machine.
<?php
function display_form($errMsg){
global $dir_path;
?>
<html>
<head><title>File Manager</title></head>
<body bgcolor="#E5E5E5">
<div align="center">
<h4>File Manager</h4>
<?php
if($errMsg){
?>
<font face="verdana, helvetica" size="2" color="red"><?php echo $errMsg ?></font>
<?php
}
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" enctype="multipart/form-data" method="POST">
<table border="1">
<tr>
<th>File Location:</th>
<th><input type="file" name="up_file" /></th>
</tr>
<tr>
<th colspan="2"><br><input type="checkbox" name="replace" value="1">Replace Exiting File*</th>
</tr>
<tr>
<th colspan="2"><br><input type="submit" name="upload" value="Upload File !" /></th>
</tr>
</table>
<br><font face="verdana, helvetica" size="1" color="#808080">* - Clicking this option will replace the existing file</font>
<br><font face="verdana, helvetica" size="1" color="#808080"><a href="file_display_manager.php">File Manager</a></font>
<br><font face="verdana, helvetica" size="2" color="#4A4A4A"><? if ($status){ echo "Result :".$status; }?></font>
<p><br><font face="verdana, helvetica" size="2" color="#808080"><b>Folder Location:</b><? echo $dir_path ?></font>
<br><font face="verdana, helvetica" size="1" color="#808080">You can change this location by editing the file</font>
</form>
</div>
</body>
</html>
<?php
}
?>
When you execute file_upload_manager.php, the following code is executed first and other function described above are called in the middle of the program.
Once the user selects the file and clicks upload, the main program part is executed. Here the program gets the upload file information like file size, file type, date modified and time stamp.
Next, it checks for the file existence in the destination folder. If the file is present the if part of the program gets executed otherwise the file is copied to the destination folder and the file information is inserted in the database.
If the file exists, and if the file size and time stamp differ, Get_New_File_Name() function is called to generate a new file name. Then the file is copied to the destination folder and the file information is stored in the database.
If the file exists and the user had checked the "Replace Existing File" option, the file is replaced and the file information is updated in the database accordingly. Otherwise the user is redirected to file_display_manager.php page and a message �A previous version of this file exists� is displayed.
Next Page>