Work with files / Basic operations

<?php

$path = getcwd() . "/tmp/data/images";

if (!mkdir($path, 0777true)) {
    echo "Failed to create directories";
}