Função is_other
Indica se file_status ou o nome do arquivo especificado representam um arquivo existente que não seja um arquivo normais, um diretório, ou um link de token.
inline bool is_other(
file_status Stat
);
template<class Path>
inline bool is_other(
const Path& Pval
);
Parâmetros
Stat
Um objeto file_status.Pval
Um objeto Path. Path pode ser um basic_path ou um tipo derivado de basic_path.
Valor de retorno
A primeira função retorna o exists() && !is_regular_file(Stat) && !is_directory(Stat) && !is_symlink(Stat).
A segunda função retorna is_other(status(Pval)).
Requisitos
o sistema de arquivos deCabeçalho:
Namespace: std::tr2::sys