 |
มีวิธีการ copy file ทั้ง folder ด้วย php ไหมครับ ปกติเวลาจะ copy file ก็จะใช้คำสั่ง copy(file_tmp,path) มันจะมาไฟล์เดียว |
|
 |
|
|
 |
 |
|
Code (PHP)
<?php
function dir_copy($srcdir, $dstdir, $offset = '', $verbose = false)
{
// A function to copy files from one directory to another one, including subdirectories and
// nonexisting or newer files. Function returns number of files copied.
// This function is PHP implementation of Windows xcopy A:\dir1\* B:\dir2 /D /E /F /H /R /Y
// Syntaxis: [$returnstring =] dircopy($sourcedirectory, $destinationdirectory [, $offset] [, $verbose]);
// Example: $num = dircopy('A:\dir1', 'B:\dir2', 1);
// Original by SkyEye. Remake by AngelKiha.
// Linux compatibility by marajax.
// ([danbrown AT php DOT net): *NIX-compatibility noted by Belandi.]
// Offset count added for the possibilty that it somehow miscounts your files. This is NOT required.
// Remake returns an explodable string with comma differentiables, in the order of:
// Number copied files, Number of files which failed to copy, Total size (in bytes) of the copied files,
// and the files which fail to copy. Example: 5,2,150000,\SOMEPATH\SOMEFILE.EXT|\SOMEPATH\SOMEOTHERFILE.EXT
// If you feel adventurous, or have an error reporting system that can log the failed copy files, they can be
// exploded using the | differentiable, after exploding the result string.
//
if(!isset($offset)) $offset=0;
$num = 0;
$fail = 0;
$sizetotal = 0;
$fifail = '';
if(!is_dir($dstdir)) mkdir($dstdir);
if($curdir = opendir($srcdir)) {
while($file = readdir($curdir)) {
if($file != '.' && $file != '..') {
// $srcfile = $srcdir . '\\' . $file; # deleted by marajax
// $dstfile = $dstdir . '\\' . $file; # deleted by marajax
$srcfile = $srcdir . '/' . $file; # added by marajax
$dstfile = $dstdir . '/' . $file; # added by marajax
if(is_file($srcfile)) {
if(is_file($dstfile)) $ow = filemtime($srcfile) - filemtime($dstfile); else $ow = 1;
if($ow > 0) {
if($verbose) echo "Copying '$srcfile' to '$dstfile'...<br />";
if(copy($srcfile, $dstfile)) {
touch($dstfile, filemtime($srcfile)); $num++;
chmod($dstfile, 0777); # added by marajax
$sizetotal = ($sizetotal + filesize($dstfile));
if($verbose) echo "OK\n";
}
else {
echo "Error: File '$srcfile' could not be copied!<br />\n";
$fail++;
$fifail = $fifail.$srcfile.'|';
}
}
}
else if(is_dir($srcfile)) {
$res = explode(',',$ret);
// $ret = dircopy($srcfile, $dstfile, $verbose); # deleted by patrick
$ret = dir_copy($srcfile, $dstfile, $verbose); # added by patrick
$mod = explode(',',$ret);
$imp = array($res[0] + $mod[0],$mod[1] + $res[1],$mod[2] + $res[2],$mod[3].$res[3]);
$ret = implode(',',$imp);
}
}
}
closedir($curdir);
}
$red = explode(',',$ret);
$ret = ($num + $red[0]).','.(($fail-$offset) + $red[1]).','.($sizetotal + $red[2]).','.$fifail.$red[3];
return $ret;
}
?>
พอดีผมไปเจอมา ลองเอาไปประยุกต์ใช้ดูนะครับ
|
 |
 |
 |
 |
Date :
2009-03-03 15:34:18 |
By :
aprodise |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
โค้ดที่ให้มา copy ได้เฉพาะที่ folder อยู่บน server ครับ
แต่ถ้า user เป็นคน upload เข้า server จะเขียนโค้ดยังไงครับ
|
 |
 |
 |
 |
Date :
2009-03-03 17:05:48 |
By :
naiboimuoun |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ปัญหาคือ เวลา client จะ Update รูปภาพ ครับ ไม่อยากให้ต้องมาใส่ทีละรูป เพราะบางทีมีเป็นร้อยรูป เลยอยากให้ เลือกจาก path หรือเลือกรูปใดรูปหนึ่งบนเครื่อง client เอง แล้วให้มัน copy ทั้งหมดมาไว้ที่ server โดยทำทีละรูป เพราะต้องการเก็บว่าใคร up อะไร เมื่อไหร่ ลงใน DB ด้วยครับ
|
 |
 |
 |
 |
Date :
2009-03-05 09:19:53 |
By :
naiboimuoun |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
แล้วถ้ารูปมีเป็น พัน มันจะเจอ memory_limit ไหมหรือว่าจะ timeout ไหมครับ
ลองไปหาโค๊ดสำหรับแตกไฟล์พวก zip rar gz อะไรพวกนี้มาดีกว่า แล้วให้เขา บีบไฟล์ก่อนแล้วค่อย อัพโหลดจริงๆ แล้วผมไม่แน่ใจว่า php มันจะมายุ่งอะไรกับ client ได้มากมายขนาดไหน นอกจากใช้ javascript ได้ชัวร์แต่ก็ไม่เต็มที่เหมือนเดิม รอคำตอบท่านต่อไปแล้วผมจะมาดักเก็บความรู้อิอิ
|
 |
 |
 |
 |
Date :
2009-03-05 10:37:56 |
By :
plakrim |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
หรือไม่ลองเขียนพวก ActiveX ครับ คล้าย ๆ กับ Spaces ของ MSN ครับ
เหตุผลที่ไม่สามารถโหลดทั้งโฟเดอร์และไม่มี Control ตัวไหนที่ Support อันเนื่องจากเกี่ยวกับความปลอดภับของผู้ใช้ครับ เพราะถ้าอัพโหลดทั้งโฟเดอร์ โอกาสที่ Client จะโดนขโมยพวกไฟล์ก็สูงไปด้วยครับ
|
 |
 |
 |
 |
Date :
2009-03-05 10:51:32 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เห็น java ในเฟซบุคเลือกอัปได้ครั้งละหลายๆไฟล์
|
 |
 |
 |
 |
Date :
2009-09-13 01:55:46 |
By :
mr.v |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
function copyallfile($src,$dst) {
/*$src = source folder
$dst = distination folder */
$files = glob($src.'*');#get all file names
foreach($files as $file){
if(is_file($file))
$filename = explode('/', $file);
copy($file, $dst.end($filename)); #copy file
echo '<b>Copy</b> '.$file.' <b>to</b> '.$dst.end($filename)."<br>";
}
}
|
 |
 |
 |
 |
Date :
2019-03-16 22:25:35 |
By :
songsaluang |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|