State of file existence.
| 52 | |
| 53 | |
| 54 | class Existence(Enum): |
| 55 | """State of file existence.""" |
| 56 | FileExist = 0 |
| 57 | DirectoryExistEmpty = 1 |
| 58 | DirectoryExistNotEmpty = 2 |
| 59 | MissingParent = 3 |
| 60 | DirectoryNotExist = 4 |
| 61 | FileNotExist = 5 |
| 62 | |
| 63 | |
| 64 | def check_path_existence( |
nothing calls this directly
no outgoing calls
no test coverage detected