nitc :: MGroup :: filepath
safe alias to location.file.filename
location.file.filename
# The filepath (usually a directory) of the group, if any # # safe alias to `location.file.filename` fun filepath: nullable String do var res res = self.location.file if res == null then return null return res.filename end