Funzione exists
Specifica se un file esiste.
inline bool exists(
file_status Stat
);
template<class Path>
inline bool exists(
const Path& Pval
);
Parametri
Stat
Un oggetto di file_status.Pval
Oggetto Path. Path può essere un basic_path o un tipo derivato da basic_path.
Valore restituito
La prima funzione restituisce status_known(Stat) && Stat.type() != file_not_found.
La seconda funzione restituisce exists(status(Pval)).
Note
Un file_status rappresenta un file esistente se il file_type sottostante è noto
Requisiti
Header: filesystem
Spazio dei nomi: std::tr2::sys