|
��������
dir - ������ ���������
���������
#include <sys/dir.h>
��������
������� ���������� �������� �����, ������ ������ � ������� ��� ������������� ���������. �� ��, ��� ���� �������� ���������, ��������� ��� � ����� di_mode ��������� ������� ����� [��. inode(4)]. ��������� ��������
��������, �������� ����������� �� ���������� �����, ������:
#ifndef DIRSIZ #define DIRSIZ 14 #endif struct direct { ushort d_ino; char d_name [DIRSIZ]; };
�� ���������� ������ ��� �������� � ����� �������� ������������� ��� "." � "..". ������ - ��� ������� ��� ������ ��������; ������ - ��� �����������. ��� ��������� �������� ".." ����� ������ �����: ��������� � ���� ��� �����������, ".." ���������� �� �� , ��� � ".".
��. �����
inode(4).
|