GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::experimental::filesystem::file_type(3) C++ Standard Libary std::experimental::filesystem::file_type(3)

std::experimental::filesystem::file_type - std::experimental::filesystem::file_type


Defined in header <experimental/filesystem>
enum class file_type {


none = 0,
not_found = -1,
regular = 1,
directory = 2,
symlink = 3, (filesystem TS)
block = 4,
character = 5,
fifo = 6,
socket = 7,
unknown = 8


};


Indicates a type of a file or directory a path refers to.


This section is incomplete


Constant Meaning
none indicates that the file status has not been evaluated yet, or an error
occurred when evaluating it
not_found indicates that the file was not found (this is not considered an error)
regular a regular file
directory a directory
symlink a symbolic link
block a block special file
character a character special file
fifo a FIFO (also known as pipe) file
socket a socket file
unknown an unknown file


This section is incomplete

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.