Is it currently possible to do a "reverse resolving"? Get relative subdirectory path from base path and absolute path? ```php $basePath = '/var/www/'; $absolutePath = FileSystemPath::fromString('/var/www/project/public/index.php'); $relativePath = $absolutePath->getRelativePath($basePath); // project/public/index.php ```
Is it currently possible to do a "reverse resolving"? Get relative subdirectory path from base path and absolute path?