App\services\Storage::size PHP Method

size() public static method

public static size ( $filename )
    public static function size($filename)
    {
        if (self::exists($filename)) {
            return filesize($filename);
        } else {
            return 0;
        }
    }