I am trying to print full path for "../" in Unreal Engine but It only returns ".." , as i know it is parent directory , and it should return something like C:\Myproj....
FString fs = FPaths::GetPath("../");
UE_LOG(LogTemp, Warning, TEXT("%s"), *fs);
how can I log full path ?