You are here

public function File::checkChunk in One Click Upload 7.2

Check if chunk exist

Return value

bool

1 method overrides File::checkChunk()
MongoFile::checkChunk in flowphp/src/Flow/Mongo/MongoFile.php
Check if chunk exist

File

flowphp/src/Flow/File.php, line 69

Class

File

Namespace

Flow

Code

public function checkChunk() {
  return file_exists($this
    ->getChunkPath($this->request
    ->getCurrentChunkNumber()));
}