Esempio n. 1
0
<?php

include './config.php';
include ROOTPATH . 'lib/pmclibrary.php';
@unlink(FILEIO_INDEXLOG);
$FileIO = PMCLibrary::getFileIOInstance();
$fio = new IndexFS(FILEIO_INDEXLOG);
$fio->openIndex();
clearstatcache();
$dirs = array(IMG_DIR, THUMB_DIR);
foreach ($dirs as $dir) {
    if ($handle = opendir($dir)) {
        while (false !== ($file = readdir($handle))) {
            if ($file == "." || $file == "..") {
                continue;
            }
            $fio->addRecord($file, filesize($dir . '/' . $file), '');
        }
    }
}
$fio->saveIndex();
echo "done";
Esempio n. 2
0
 /**
  * 儲存索引檔
  */
 public function saveIndex()
 {
     $this->IFS->saveIndex();
 }