The status of a file. see POSIX stat(2).

Property definitions

core :: file $ Text :: file_stat
	# The status of a file. see POSIX stat(2).
	fun file_stat: nullable FileStat
	do
		var stat = to_cstring.file_stat
		if stat.address_is_null then return null
		return new FileStat(stat)
	end
lib/core/file.nit:904,2--910,4