Condividi tramite


Funzione is_other

Indica se file_status o il nome file specificato rappresenta un file esistente non incluso un normale file, una directory, o un collegamento dei token.

inline bool is_other(
   file_status Stat
);
template<class Path>
inline bool is_other(
   const Path& Pval
);

Parametri

  • Stat
    Oggetto file_status.

  • Pval
    Oggetto Path. Path può essere un basic_path o un tipo derivato da basic_path.

Valore restituito

La prima funzione restituisce il exists() && !is_regular_file(Stat) && !is_directory(Stat) && !is_symlink(Stat).

La seconda funzione restituisce is_other(status(Pval)).

Requisiti

Header: filesystem

Spazio dei nomi: std::tr2::sys

Vedere anche

Riferimenti

<filesystem>

Enumerazione file_type

Funzione status

Funzione exists

Funzione is_regular_file

Funzione is_directory

Funzione is_symlink

Altre risorse

File di intestazione libreria standard C++