Neos\Flow\ResourceManagement\Storage\FileSystemStorage::initializeObject PHP Method

initializeObject() public method

Initializes this resource storage
public initializeObject ( ) : void
return void
    public function initializeObject()
    {
        if (!is_dir($this->path) && !is_link($this->path)) {
            throw new Exception('The directory "' . $this->path . '" which was configured as a resource storage does not exist.', 1361533189);
        }
    }