PHP를 사용하여 디렉토리의 내용을 재귀적으로 복사하는 방법은 무엇입니까?

Patricia Arquette
풀어 주다: 2024-10-29 10:30:29
원래의
1078명이 탐색했습니다.

How to Copy a Directory's Contents Using PHP Recursively?

PHP를 사용하여 디렉토리 내용 복사

디렉토리 내용을 다른 위치로 복사하려고 하면 코드 복사("old_location/*.*"," new_location/")에는 스트림을 찾을 수 없다는 오류가 발생할 수 있습니다. 이는 복사 기능에서 별표(*)를 단독으로 사용할 때 발생할 수 있습니다.

하위 디렉터리 및 파일을 포함하여 디렉터리의 전체 내용을 효과적으로 복사하려면 아래와 같은 재귀 함수를 사용할 수 있습니다.

<code class="php">function recurseCopy(
    string $sourceDirectory,
    string $destinationDirectory,
    string $childFolder = ''
): void {
    // Open the source directory
    $directory = opendir($sourceDirectory);

    // Check if the destination directory exists, if not, create it
    if (is_dir($destinationDirectory) === false) {
        mkdir($destinationDirectory);
    }

    // If there's a child folder specified, create it if it doesn't exist
    if ($childFolder !== '') {
        if (is_dir("$destinationDirectory/$childFolder") === false) {
            mkdir("$destinationDirectory/$childFolder");
        }

        // Loop through the files in the source directory
        while (($file = readdir($directory)) !== false) {
            // Ignore current and parent directories
            if ($file === '.' || $file === '..') {
                continue;
            }

            // If the current file is a directory, recursively copy it
            if (is_dir("$sourceDirectory/$file") === true) {
                recurseCopy("$sourceDirectory/$file", "$destinationDirectory/$childFolder/$file");
            }
            // If it's a file, simply copy it
            else {
                copy("$sourceDirectory/$file", "$destinationDirectory/$childFolder/$file");
            }
        }

        // Close the source directory
        closedir($directory);

        // Recursion ends here
        return;
    }

    // Loop through the files in the source directory
    while (($file = readdir($directory)) !== false) {
        // Ignore current and parent directories
        if ($file === '.' || $file === '..') {
            continue;
        }

        // If the current file is a directory, recursively copy it
        if (is_dir("$sourceDirectory/$file") === true) {
            recurseCopy("$sourceDirectory/$file", "$destinationDirectory/$file");
        }
        // If it's a file, simply copy it
        else {
            copy("$sourceDirectory/$file", "$destinationDirectory/$file");
        }
    }

    // Close the source directory
    closedir($directory);
}</code>
로그인 후 복사

이 재귀 기능을 사용하면 디렉터리의 전체 내용을 다른 위치에 효율적으로 복사하여 모든 하위 디렉터리와 파일이 올바르게 전송되도록 할 수 있습니다.

위 내용은 PHP를 사용하여 디렉토리의 내용을 재귀적으로 복사하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿