From Jason Turner

[fs.enum.file.type]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpwf2y6ezl/{from.md → to.md} +16 -0
tmp/tmpwf2y6ezl/{from.md → to.md} RENAMED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ **Table: Enum class `file_type`** <a id="fs.enum.file.type">[fs.enum.file.type]</a>
2
+
3
+ | Constant | Meaning |
4
+ | ------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
5
+ | `none` | The type of the file has not been determined or an error occurred while trying to determine the type. |
6
+ | `not_found` | Pseudo-type indicating the file was not found. *The file not being found is not considered an error while determining the type of a file.* |
7
+ | `regular` | Regular file |
8
+ | `directory` | Directory file |
9
+ | `symlink` | Symbolic link file |
10
+ | `block` | Block special file |
11
+ | `character` | Character special file |
12
+ | `fifo` | FIFO or pipe file |
13
+ | `socket` | Socket file |
14
+ | `implementation-defined` | Implementations that support file systems having file types in addition to the above `file_type` types shall supply implementation-defined `file_type` constants to separately identify each of those additional file types |
15
+ | `unknown` | The file exists but the type cannot be determined |
16
+