Modelica.Utilities.Files.createDirectory calls fullPathName, which fails if the path does not exist (on Linux). This means createDirectory does not work. Some possible solutions:
- Change
fullPathName to never fail (revert to the old code with getcwd)
- Change
createDirectory to not call fullPathName (but this would not fix older MSL versions)
- Add an argument to
fullPathName to not fail (return the input perhaps), and create this additional file in the external sources