(filename, current_folder=None)
| 113 | return os.access(file_path, os.X_OK) |
| 114 | |
| 115 | def exists(filename, current_folder=None): |
| 116 | path = normalize_path(filename, current_folder) |
| 117 | return os.path.exists(path) |
| 118 | |
| 119 | |
| 120 | def last_modification(folder_paths): |
nothing calls this directly
no test coverage detected