웹마스터 팁
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
디렉토리의 내용을 가져오는 방법
2002.09.02 12:40
// 오픈할 디렉토리 패스
$dir_path = "./";
// 디렉토리를 연다.
$dir_handle = opendir($dir_path);
// 전체 디렉토리 내용을 출력한다.
while($tmp = readdir($dir_handle))
{
echo (is_dir($dir_path.$tmp) ? "디렉토리 : $tmp<br>" : "파일 : $tmp<br>";
}
출력 결과
-------------------------------------
디렉토리 : .
디렉토리 : ..
파일 : index.php
디렉토리 : 80port
디렉토리 : zb
디렉토리 : test
디렉토리 : myplus
디렉토리 : member
파일 : kims+_txt_mysql.php3
디렉토리 : diary
파일 : test.php
$dir_path = "./";
// 디렉토리를 연다.
$dir_handle = opendir($dir_path);
// 전체 디렉토리 내용을 출력한다.
while($tmp = readdir($dir_handle))
{
echo (is_dir($dir_path.$tmp) ? "디렉토리 : $tmp<br>" : "파일 : $tmp<br>";
}
출력 결과
-------------------------------------
디렉토리 : .
디렉토리 : ..
파일 : index.php
디렉토리 : 80port
디렉토리 : zb
디렉토리 : test
디렉토리 : myplus
디렉토리 : member
파일 : kims+_txt_mysql.php3
디렉토리 : diary
파일 : test.php
댓글 2
-
Myzzix
2002.09.09 19:03
-
한용희
2002.09.20 17:33
loop안에
if($file!="." || $file!=".." ) echo "$file<br>" ; 이라고 하면 더 깔끔하겠지요.
그런데 PHP.net 에는
<?
$path = "./";
$handle = opendir($path);
while (false !== ($file = readdir($handle))) {
echo "$filen";
}
?>
이 것도 될 것같군요^^
PHP.net 에 http://www.php.net/manual/en/function.readdir.php여기에 나왔더군요^^