You are here

public function AFile::exists in N1ED - Visual editor as CKEditor plugin with Bootstrap support 8.2

Does file exist.

1 call to AFile::exists()
AFile::checkForErrors in src/Flmngr/FileUploaderServer/lib/file/AFile.php
Returns do we need to continue check or not.

File

src/Flmngr/FileUploaderServer/lib/file/AFile.php, line 193

Class

AFile
Abstract file item both for just uploaded and fully commited files. Contains some handy method for accessing files info programmatically.

Namespace

Drupal\n1ed\Flmngr\FileUploaderServer\lib\file

Code

public function exists() {
  return file_exists($this
    ->getFullPath());
}