특정 디렉토리의 파일목록을 구하기
페이지 정보
작성자 오원장쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 댓글 0건 조회 3,514회 작성일 15-11-11 08:51본문
<?php
$filePath = './'; // 파일을 찾을 경로
if ($handle = opendir($filePath)) {
while (false !== ($entry = readdir($handle))) {
if($entry == '.') continue;
if($entry == '..') continue;
$_fileNameWithPath = $filePath . DIRECTORY_SEPARATOR . $entry;
echo '파일명: '.$entry;
echo ', 파일명(경로): '.$_fileNameWithPath.'<br>'.PHP_EOL;
}
closedir($handle);
}
?>
댓글목록
등록된 댓글이 없습니다.