Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
JAVA
/
system
:
fileLookUp.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /*************************************************************** * Copyright notice * * (c) 2003-2004 Tobias Bender (tobias@phpXplorer.org) * All rights reserved * * This script is part of the phpXplorer project. The phpXplorer project is * free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * The GNU General Public License can be found at * http://www.gnu.org/copyleft/gpl.html. * A copy is found in the textfile GPL.txt distributed with these scripts. * * This script is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * This copyright notice MUST APPEAR in all copies of the script! ***************************************************************/ function fileLookUp($dir, $depth = 0, $name = NULL, $extension = NULL){ GLOBAL $PXP_basedir; $f = dir($dir); $res = Array(); while($file = $f->read()){ if($file != "." and $file != ".."){ if(!is_dir($file)){ $arrExt = explode(".", $file); unset($arrExt[0]); $ext = implode(".", $arrExt); if($name == $file or $ext == $extension){ $relPath = "./"; for($i = 0; $i < $depth; $i++){ $relPath .= "../"; } $relPath .= $file; array_push($res, Array($relPath, $dir . "/" . $file)); } } } } if($dir != $PXP_basedir){ $depth++; return array_merge($res, fileLookUp(substr($dir, 0, strrpos($dir,"/")), $depth, $name, $extension)); }else{ return $res; } } ?>