/**
  * @return string
  */
 public function getGeneratedFileName()
 {
     return $this->replaceWithCallBack($this->getPattern(), 'datetime', function ($matches) {
         return FileNameGenerator::addRightSlash($matches[1]) . date('Y-m-d-His');
     });
 }