Check whether a file exists by given file path.
(filepath)
| 2291 | |
| 2292 | |
| 2293 | def file_exists(filepath): |
| 2294 | """Check whether a file exists by given file path.""" |
| 2295 | return os.path.isfile(filepath) |
| 2296 | |
| 2297 | |
| 2298 | def folder_exists(folderpath): |
no outgoing calls
no test coverage detected
searching dependent graphs…