本文整理汇总了C++中file_status类的典型用法代码示例。如果您正苦于以下问题:C++ file_status类的具体用法?C++ file_status怎么用?C++ file_status使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了file_status类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C++代码示例。
示例1: main
int main() {
using namespace fs;
// Default ctor
{
static_assert(std::is_nothrow_default_constructible<file_status>::value,
"The default constructor must be noexcept");
static_assert(test_convertible<file_status>(),
"The default constructor must not be explicit");
const file_status f;
assert(f.type() == file_type::none);
assert(f.permissions() == perms::unknown);
}
// Unary ctor
{
static_assert(std::is_nothrow_constructible<file_status, file_type>::value,
"This constructor must be noexcept");
static_assert(!test_convertible<file_status, file_type>(),
"This constructor must be explicit");
const file_status f(file_type::not_found);
assert(f.type() == file_type::not_found);
assert(f.permissions() == perms::unknown);
}
// Binary ctor
{
static_assert(std::is_nothrow_constructible<file_status, file_type, perms>::value,
"This constructor must be noexcept");
static_assert(!test_convertible<file_status, file_type, perms>(),
"This constructor must b explicit");
const file_status f(file_type::regular, perms::owner_read);
assert(f.type() == file_type::regular);
assert(f.permissions() == perms::owner_read);
}
}
开发者ID:MIPS,项目名称:external-libcxx,代码行数:35,代码来源:file_status.cons.pass.cpp
示例2: status_known
inline bool status_known( file_status f ) { return f.type() != status_unknown; }
开发者ID:ht101996,项目名称:MyProjects,代码行数:1,代码来源:operations.hpp
示例3: is_regular_file
inline bool is_regular_file(file_status s) noexcept
{
return s.type() == file_type::regular;
}
开发者ID:steve6390,项目名称:nana,代码行数:4,代码来源:filesystem.hpp
示例4: exists
inline bool exists(file_status s) noexcept
{ return status_known(s) && s.type() != file_type::not_found; }
开发者ID:efcs,项目名称:elib,代码行数:2,代码来源:operations.hpp
示例5: status_known
inline bool status_known(file_status f) { return f.type() != status_error; }
开发者ID:Alexander--,项目名称:Wesnoth-1.8-for-Android,代码行数:1,代码来源:operations.hpp
示例6: is_symlink
inline bool is_symlink(file_status f) { return f.type() == symlink_file; }
开发者ID:Alexander--,项目名称:Wesnoth-1.8-for-Android,代码行数:1,代码来源:operations.hpp
示例7: exists
inline bool exists(file_status f) { return f.type() != status_error
&& f.type() != file_not_found; }
开发者ID:Alexander--,项目名称:Wesnoth-1.8-for-Android,代码行数:2,代码来源:operations.hpp
示例8: permissions_present
inline bool permissions_present(file_status f)
{return f.permissions() != perms_not_known;}
开发者ID:111304037,项目名称:FreeJudger,代码行数:2,代码来源:operations.hpp
示例9: status_known
inline bool status_known(file_status s) noexcept
{ return s.type() != file_type::none; }
开发者ID:efcs,项目名称:elib,代码行数:2,代码来源:operations.hpp
示例10: is_symlink
inline bool is_symlink(file_status s) noexcept
{ return s.type() == file_type::symlink; }
开发者ID:efcs,项目名称:elib,代码行数:2,代码来源:operations.hpp
示例11: is_socket
inline bool is_socket(file_status s) noexcept
{ return s.type() == file_type::socket; }
开发者ID:efcs,项目名称:elib,代码行数:2,代码来源:operations.hpp
示例12: is_fifo
inline bool is_fifo(file_status s) noexcept
{ return s.type() == file_type::fifo; }
开发者ID:efcs,项目名称:elib,代码行数:2,代码来源:operations.hpp
示例13: is_character_file
inline bool is_character_file(file_status s) noexcept
{ return s.type() == file_type::character; }
开发者ID:efcs,项目名称:elib,代码行数:2,代码来源:operations.hpp
示例14: is_block_file
inline bool is_block_file(file_status s) noexcept
{ return s.type() == file_type::block; }
开发者ID:efcs,项目名称:elib,代码行数:2,代码来源:operations.hpp
示例15: exists
inline bool exists( file_status f ) { return f.type() != status_unknown && f.type() != file_not_found; }
开发者ID:ht101996,项目名称:MyProjects,代码行数:1,代码来源:operations.hpp
示例16: type_present
inline bool type_present(file_status f) { return f.type() != status_error; }
开发者ID:111304037,项目名称:FreeJudger,代码行数:1,代码来源:operations.hpp
示例17: type
bool operator==(const file_status& rhs) const { return type() == rhs.type() &&
permissions() == rhs.permissions(); }
开发者ID:OggYiu,项目名称:rag-engine,代码行数:2,代码来源:operations.hpp
示例18: get_size
inline
size_t get_size(const file_status &p_status) {
return p_status.get_len();
}
开发者ID:hepengfei,项目名称:fs-interface,代码行数:4,代码来源:gfs.hpp
示例19: is_directory
inline
bool is_directory(const file_status &p_status) {
return p_status.is_dir();
}
开发者ID:hepengfei,项目名称:fs-interface,代码行数:4,代码来源:gfs.hpp
示例20: is_directory
inline bool is_directory(file_status f) { return f.type() == directory_file; }
开发者ID:Alexander--,项目名称:Wesnoth-1.8-for-Android,代码行数:1,代码来源:operations.hpp
注:本文中的file_status类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论