The status of a file or of a symlink. see POSIX lstat(2).

Property definitions

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