-
-
/**
- * 读取文件夹及其中文件的函数
- * edit: bbs.it-home.org
- *
- */
- function GetFoldersAndFiles( $resourceType, $currentFolder )
- {
- // Map the virtual path to the local server path.
- $sServerDir = ServerMapFolder( $resourceType, $currentFolder, 'GetFoldersAndFiles' ) ;
// Arrays that will hold the folders and files names.
- $aFolders = array() ;
- $aFiles = array() ;
$oCurrentFolder = opendir( $sServerDir ) ;
while ( $sFile = readdir( $oCurrentFolder ) )
- {
- if ( $sFile != '.' && $sFile != '..' )
- {
- if ( is_dir( $sServerDir . $sFile ) )
- $aFolders[] = '' ;
- else
- {
- $iFileSize = @filesize( $sServerDir . $sFile ) ;
- if ( !$iFileSize ) {
- $iFileSize = 0 ;
- }
- if ( $iFileSize > 0 )
- {
- $iFileSize = round( $iFileSize / 1024 ) ;
- if ( $iFileSize }
$aFiles[] = '' ;
- }
- }
- }
// Send the folders
- natcasesort( $aFolders ) ;
- echo '' ;
foreach ( $aFolders as $sFolder )
- echo $sFolder ;
echo ' ' ;
// Send the files
- natcasesort( $aFiles ) ;
- echo '' ;
foreach ( $aFiles as $sFiles )
- echo $sFiles ;
echo ' ' ;
- }
-
复制代码
您可能感兴趣的文章:
php遍历文件夹下并实现编辑与删除的代码
php获取文件夹大小的函数
Php删除指定文件与文件夹的方法
PHP遍历文件和文件夹的小例子
php获取文件夹信息的统计函数
php计算指定文件夹信息(文件夹数,文件数,文件夹大小)的代码
php遍历目录下所有文件和子文件夹的代码
php遍历文件夹及其下所有文件的代码
计算文件夹大小的php代码
|