fs/Path: add operator/(Path,Path)
Modeled after std::filesystem::operator/() from C++17.
This commit is contained in:
@@ -138,7 +138,7 @@ LoadPlaylistFileInfo(PlaylistInfo &info,
|
||||
return false;
|
||||
|
||||
FileInfo fi;
|
||||
if (!GetFileInfo(AllocatedPath::Build(parent_path_fs, name_fs), fi) ||
|
||||
if (!GetFileInfo(parent_path_fs / name_fs, fi) ||
|
||||
!fi.IsRegular())
|
||||
return false;
|
||||
|
||||
|
Reference in New Issue
Block a user