- name
- Documentation for this section has not yet been entered.
Documentation for this section has not yet been entered.
C# Example
class OpendirDemo {
public static void Main(string[] argv)
{
IntPtr dir = Syscall.opendir("/tmp");
Dirent nextentry;
while ((nextentry = Syscall.readdir (dir)) != null) {
Console.WriteLine(nextentry.d_name);
}
Syscall.closedir (dir);
}
}