(libraryPath)
| 19 | print ('- By default <module_name>="mymodule" and <version>="1.6"') |
| 20 | |
| 21 | def _getSubDirectories(libraryPath): |
| 22 | return [name for name in os.listdir(libraryPath) |
| 23 | if os.path.isdir(os.path.join(libraryPath, name))] |
| 24 | |
| 25 | def _getMTLXFilesInDirectory(path): |
| 26 | for file in os.listdir(path): |