개발자의 끄적끄적

[php] php 특정 디렉토리 내 파일목록 조회하는 방법 본문

개발/php

[php] php 특정 디렉토리 내 파일목록 조회하는 방법

효벨 2022. 1. 17. 01:00
728x90
반응형

[php] php 특정 디렉토리 내 파일목록 조회하는 방법

 

 

php 에서

 

파일을 다루다 보면

 

특정 디렉토리 안에 있는 파일의 목록을

 

조회해야 하는 경우가 있습니다.

 

그럴때는 아래와 같이

 

파일명을 조회해서 출력이 가능합니다!

 

$path = "/common/img/";

if(is_dir($path)) {
    if($dh = opendir($path)) {
        while(($file = readdir($dh)) !== false) {
            if ($file == "." || $file == "..") {
                continue;
            }
            $fname = $path.$file;
            if(is_file($fname)) {
                echo "filename: ".$fname."<br>";
            }
        }
        closedir($dh);
    }
}

 

참고들 하세요!

반응형
Comments