Webiny\Component\Storage\Driver\Local\LocalHelper::normalizeDirectoryPath PHP 메소드

normalizeDirectoryPath() 공개 메소드

.' and make sure it's not a symlink)
public normalizeDirectoryPath ( $path ) : string
$path
리턴 string
    public function normalizeDirectoryPath($path)
    {
        $path = $this->normalizePath($path);
        if (is_link($path)) {
            $path = realpath($path);
        }
        return $path;
    }