Uname: Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 8.0.30 [ PHP INFO ] PHP os: Linux
Server Ip: 145.239.37.162
Your Ip: 216.73.216.190
User: dreampi (1009562) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : Directory.php
<?php
/**
 * 
 */
class Loco_fs_Directory extends Loco_fs_File {
    
    /**
     * Recursive flag for internal use
     */
    private bool $r = false;


    /**
     * {@inheritDoc}
     */
    public function isDirectory():bool {
        return true;
    }


    /**
     * Set recursive flag for use when traversing directory trees
     */
    public function setRecursive( bool $bool ):self {
        $this->r = $bool;
        return $this;
    }


    /**
     * @return bool
     */
    public function isRecursive():bool {
        return $this->r;
    }


    /**
     * Create this directory for real.
     * 
     * @throws Loco_error_WriteException
     * @return Loco_fs_Directory
     */
     public function mkdir():self {
         $this->getWriteContext()->mkdir();
         return $this;
     }

}
© 2026 GrazzMean-Shell