Its required for a folder based search script. I already the following script running well for me:
<?php
clearstatcache();
$sourcepath = "songs";
// Replace \ by / and remove the final / if any
$root = ereg_replace( "/$", "", ereg_replace( "[\]", "/", $sourcepath ));
// Search for text files
$results = m_find_in_dir( $root, ".*.rm$" );
if( false === $results ) {
echo "'{$sourcepath}' is not a valid directory\n";
} else {
echo "<pre>";
print_r( $results );
}
/**
Search for a file maching a regular expression
@ string $root Root path
@ string $pattern POSIX regular expression pattern
@ boolean $recursive Set to true to walk the subdirectories recursively
@ boolean $case_sensitive Set to true for case sensitive search
@return array An array of string representing the path of the matching files, or false in case of error
/
function m_find_in_dir( $root, $pattern, $recursive = true, $case_sensitive = false ) {
$result = array();
if( $case_sensitive ) {
if( false === m_find_in_dir( $root, $pattern, $recursive, $result )) {
return false;
}
} else {
if( false === m_find_in_dir_i( $root, $pattern, $recursive, $result )) {
return false;
}
}
return $result;
}
/**
@access private
/
function m_find_in_dir( $root, $pattern, $recursive, &$result ) {
$dh = @opendir( $root );
if( false === $dh ) {
return false;
}
while( $file = readdir( $dh )) {
if( "." == $file || ".." == $file ){
continue;
}
if( false !== @ereg( $pattern, "{$root}/{$file}" )) {
$result[] = "{$root}/{$file}";
}
if( false !== $recursive && is_dir( "{$root}/{$file}" )) {
m_find_in_dir( "{$root}/{$file}", $pattern, $recursive, $result );
}
}
closedir( $dh );
return true;
}
/**
@access private
/
function m_find_in_dir_i( $root, $pattern, $recursive, &$result ) {
$dh = @opendir( $root );
if( false === $dh ) {
return false;
}
while( $file = readdir( $dh )) {
if( "." == $file || ".." == $file ){
continue;
}
if( false !== @eregi( $pattern, "{$root}/{$file}" )) {
$result[] = "{$root}/{$file}";
}
if( false !== $recursive && is_dir( "{$root}/{$file}" )) {
m_find_in_dir( "{$root}/{$file}", $pattern, $recursive, $result );
}
}
closedir( $dh );
return true;
}
?>
The problem is with pattern part. Yes i am looking for match in the name part of the song file. That is before .rm extension.