/home/techb158/dev.balacoffee.com/vendor/nette/utils/src/Utils
NameSizeModeActions
ArrayHash.php19050644editdlrm
ArrayList.php26740644editdlrm
Arrays.php114310644editdlrm
Callback.php35660644editdlrm
DateTime.php29230644editdlrm
exceptions.php7750644editdlrm
FileInfo.php12910644editdlrm
FileSystem.php92900644editdlrm
Finder.php133660644editdlrm
Floats.php21200644editdlrm
Helpers.php25600644editdlrm
Html.php194890644editdlrm
Image.php241970644editdlrm
ImageColor.php16410644editdlrm
ImageType.php4210644editdlrm
Json.php22740644editdlrm
ObjectHelpers.php70120644editdlrm
Paginator.php44890644editdlrm
Random.php10990644editdlrm
Reflection.php85720644editdlrm
ReflectionMethod.php8120644editdlrm
Strings.php221400644editdlrm
Type.php65080644editdlrm
Validators.php106640644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/nette/utils/src/Utils/FileInfo.php (1291B)
setInfoClass(static::class); $this->relativePath = $relativePath; } /** * Returns the relative directory path. */ public function getRelativePath(): string { return $this->relativePath; } /** * Returns the relative path including file name. */ public function getRelativePathname(): string { return ($this->relativePath === '' ? '' : $this->relativePath . DIRECTORY_SEPARATOR) . $this->getBasename(); } /** * Returns the contents of the file. * @throws Nette\IOException */ public function read(): string { return FileSystem::read($this->getPathname()); } /** * Writes the contents to the file. * @throws Nette\IOException */ public function write(string $content): void { FileSystem::write($this->getPathname(), $content); } }