| PHP |
|---|
| public static function GetFileSpecPath(string $fileSpec): string |
| PHP |
|---|
// Gets the Path from the file spec.
private static function GetFileSpecPath()
{
$fileSpec = "../Folder/File.txt";
$result = LJC::GetFileSpecPath($fileSpec);
// result:
// ../Folder
}
|