使用php删除所有.svn文件和文件夹

时间:2014-01-06 09:16:53

标签: php svn

错误的我用svn文件和文件夹在服务器上上传我的代码。我没有SSH访问权限,因此无法运行命令。 所以有任何PHP代码使用我可以从我的项目中删除所有.svn文件夹。

2 个答案:

答案 0 :(得分:1)

修改

查找所有.svn文件夹是一个复杂的过程,您需要使用递归函数。

代码链接:http://pastebin.com/i5QMGm1C

或者在这里查看:

function rrmdir($dir)
{
    foreach(glob($dir . '/*') as $path) {
        if(is_dir($path)){
            rrmdir($path);
        }
        else{
            unlink($path);
        }
    }

    foreach(glob($dir . '/.*') as $path) {
        if(is_dir($path)){
            $base_name = basename($path);
            if ($base_name != '..' && $base_name != '.'){
                rrmdir($path);
            }
        }
        else{
            unlink($path);
        }
    }
    rmdir($dir);
}

function delete_dir($base, $dir)
{
    static $count = 0;
    foreach (glob($base . '/*') as $path){
        if(is_dir($path)){
            delete_dir($path, $dir);
        }
    }

    foreach (glob($base . '/.*') as $path){
        if(is_dir($path)){
            $base_name = basename($path);
            if ($base_name != '..' && $base_name != '.'){
                if ($base_name == $dir){
                    rrmdir($path);
                    echo 'Directory (' . $path . ') Removed!<br />';
                    $count++;
                }
                else {
                    delete_dir($path, $dir);
                }
            }
        }
    }
    return $count;
}

$base = $_SERVER['DOCUMENT_ROOT'];
$dir = '.svn';
$count = delete_dir($base, $dir);

echo 'Total: ' . $count . ' Folders Removed!';

答案 1 :(得分:0)

我在这里得到一个解决方案

lateralcode复制而不做任何修改

$path = $_SERVER['DOCUMENT_ROOT'].'/work/remove-svn-php/'; // path of your directory 
header( 'Content-type: text/plain' ); // plain text for easy display

// preconditon: $dir ends with a forward slash (/) and is a valid directory
// postcondition: $dir and all it's sub-directories are recursively
// searched through for .svn directories. If a .svn directory is found,
// it is deleted to remove any security holes. 
function removeSVN( $dir ) {
    //echo "Searching: $dir\n\t";

    $flag = false; // haven't found .svn directory
    $svn = $dir . '.svn';

    if( is_dir( $svn ) ) {
        if( !chmod( $svn, 0777 ) )
            echo "File permissions could not be changed (this may or may not be a problem--check the statement below).\n\t"; // if the permissions were already 777, this is not a problem

        delTree( $svn ); // remove the .svn directory with a helper function

        if( is_dir( $svn ) ) // deleting failed
            echo "Failed to delete $svn due to file permissions.";
        else
            echo "Successfully deleted $svn from the file system.";

        $flag = true; // found directory
    }

    if( !$flag ) // no .svn directory
        echo 'No .svn directory found.';
    echo "\n\n";

    $handle = opendir( $dir );
    while( false !== ( $file = readdir( $handle ) ) ) {
        if( $file == '.' || $file == '..' ) // don't get lost by recursively going through the current or top directory
            continue;

        if( is_dir( $dir . $file ) )
            removeSVN( $dir . $file . '/' ); // apply the SVN removal for sub directories
    }
}

// precondition: $dir is a valid directory
// postcondition: $dir and all it's contents are removed
// simple function found at http://www.php.net/manual/en/function.rmdir.php#93836
function delTree( $dir ) {
    $files = glob( $dir . '*', GLOB_MARK ); // find all files in the directory

    foreach( $files as $file ) {
        if( substr( $file, -1 ) == '/')
            delTree( $file ); // recursively apply this to sub directories
        else
            unlink( $file );
    }

    if ( is_dir( $dir ) ){
                //echo $dir;
               // die;
        rmdir( $dir ); // remove the directory itself (rmdir only removes a directory once it is empty)

            }
      }

// remove all .svn directories in the 
// current directory and sub directories 
// (recursively applied)
removeSVN($path);