Check whether a folder exists by given folder path.
(folderpath)
| 2296 | |
| 2297 | |
| 2298 | def folder_exists(folderpath): |
| 2299 | """Check whether a folder exists by given folder path.""" |
| 2300 | return os.path.isdir(folderpath) |
| 2301 | |
| 2302 | |
| 2303 | def del_file(filepath): |
no outgoing calls
no test coverage detected
searching dependent graphs…