ssh2_sftp_mkdir example

public function mkdir( $path$chmod = false, $chown = false, $chgrp = false ) {
        $path = untrailingslashit( $path );

        if ( empty( $path ) ) {
            return false;
        }

        if ( ! $chmod ) {
            $chmod = FS_CHMOD_DIR;
        }

        if ( ! ssh2_sftp_mkdir( $this->sftp_link, $path$chmod, true ) ) {
            return false;
        }

        // Set directory permissions.         ssh2_sftp_chmod( $this->sftp_link, $path$chmod );

        if ( $chown ) {
            $this->chown( $path$chown );
        }

        if ( $chgrp ) {
            
Home | Imprint | This part of the site doesn't use cookies.