<?php
require_once("iecho.php");
require_once("batchFile.class.php");
$fl = new batchFile();
$fl->extname ="*"//the file type need to be operated ,format is [;php;html;]
$fl->deepLimit = 0
$fl->path='D:\av\bbchannel\b'//operate dir
$fl->filterPath='_vti_cnf';  //ignored dir
$fl->start();

//pr($fl);
$cmd = array();
foreach ($fl->file as $file)
{
  
$rfile = $fl->path . $file;
  
$rfile = str_replace('/' , '\\' , $rfile);
  
$r[substr($file,1,6)][] = $rfile;
}

foreach ($r as $rf) {
    
$cmd[] = "copy /b ".implode"+" , $rf );
}

pr(
$cmd);

?>
Posted on 2006-05-14 18:19  古代  阅读(846)  评论(0编辑  收藏  举报