Folder::x()

Nothing.

Table of Contents
  1. Description
  2. Example

Description

Folder::x(): null;

This method does nothing but returns null.

Example

$folder = new Folder('.\path\to\folder');

$x = $folder->x(); // Returns `null`
$folder = new Folder('.\path\to\folder.txt');

$x = $folder->x(); // Returns `null`

Folder::size()

Gets the total sizes of files contained in the folder in human readable string format.

Folder::x()

Nothing.