exists Funktionen
Gibt an, ob eine Datei vorhanden ist.
inline bool exists(
file_status Stat
);
template<class Path>
inline bool exists(
const Path& Pval
);
Parameter
Stat
Ein file_status-Objekt.Pval
Ein Path-Objekt.Path kann entweder basic_path oder ein Typ sein, der von basic_path abgeleitet wird.
Rückgabewert
Die erste Funktion gibt status_known(Stat) && Stat.type() != file_not_found zurück.
Die zweite Funktion gibt exists(status(Pval)) zurück.
Hinweise
Ein file_status stellt eine vorhandene Datei dar, wenn das zugrunde liegende file_type bekannt
Anforderungen
Header: Dateisystem
Namespace: std::tr2::sys