Read the next directory entry

Property definitions

core $ NativeDir :: readdir
	# Read the next directory entry
	fun readdir: CString `{
		struct dirent *de;
		de = readdir(self);
		if (!de) return NULL;
		return de->d_name;
	`}
lib/core/file.nit:1580,2--1586,3