table of contents
        
      
      
    - Tumbleweed 2024.07.05-1.3
 - Leap-16.0
 - Leap-15.6
 
| std::experimental::filesystem::file_type(3) | C++ Standard Libary | std::experimental::filesystem::file_type(3) | 
NAME¶
std::experimental::filesystem::file_type - std::experimental::filesystem::file_type
Synopsis¶
 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
Constants¶
 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
See also¶
This section is incomplete
Categories:¶
 * Noindexed pages
  
   * Todo without reason
| 2024.06.10 | http://cppreference.com |