private function setValueAfterValidation(string $value): void
{
if (preg_match('/[^a-z0-9_\/\\-\\.]+/i', $value)
// phpcs:ignore Magento2.Functions.DiscouragedFunction
|| !$this->_mediaDirectory->isFile($this->_getUploadDir() . DIRECTORY_SEPARATOR . basename($value))
) {
throw new LocalizedException(__('Invalid file name: "%1".', $value));
}
$this->setValue($value);
}