The filepath (usually a directory) of the group, if any

safe alias to location.file.filename

Property definitions

nitc $ MGroup :: filepath
	# 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
src/model/mpackage.nit:152,2--160,4