На главную

On-line справка по Win32 API

Написать письмо
БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО!
Список всех статей A-B-C-D-E-F-G-H-I-J-K-L-M-N-O-P-Q-R-S-T-U-V-W-X-Y-Z | Скачать Вниз

CreateDirectoryEx



The CreateDirectoryEx function creates a new directory with a specified path that retains the attributes of a specified template directory. If the underlying file system supports security on files and directories, the function applies a specified security descriptor to the new directory. The new directory retains the other attributes of the specified template directory. Note that CreateDirectoryEx has a template parameter, while CreateDirectory does not.

BOOL CreateDirectoryEx(

LPCTSTR lpTemplateDirectory, // pointer to path string of template directory
LPCTSTR lpNewDirectory, // pointer to path string of directory to create
LPSECURITY_ATTRIBUTES lpSecurityAttributes // pointer to security descriptor
);


Parameters

lpTemplateDirectory

Points to a null-terminated string that specifies the path of the directory to use as a template when creating the new directory.

lpNewDirectory

Points to a null-terminated string that specifies the path of the directory to be created.

lpSecurityAttributes

Pointer to a SECURITY_ATTRIBUTES structure that determines whether the returned handle can be inherited by child processes. If lpSecurityAttributes is NULL, the handle cannot be inherited.

Windows NT: The lpSecurityDescriptor member of the structure specifies a security descriptor for the new directory. If lpSecurityAttributes is NULL, the directory gets a default security descriptor. The target file system must support security on files and directories for this parameter to have an effect.
Windows 95: The lpSecurityDescriptor member of the structure is ignored.



Return Values

If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError.

Remarks

The CreateDirectoryEx function allows you to create directories that inherit stream information from other directories. This function is useful, for example, when dealing with Macintosh directories, which have a resource stream that is needed to properly identify directory contents as an attribute.

Windows NT:

Some file systems, such as NTFS, support compression for individual files and directories. On volumes formatted for such a file system, a new directory inherits the compression attribute of its parent directory.

You can obtain a handle to a directory by calling the CreateFile function with the FILE_FLAG_BACKUP_SEMANTICS flag set. See CreateFile for a code example.

See Also

CreateDirectory, CreateFile, RemoveDirectory, SECURITY_ATTRIBUTES


Пригласи друзей и счет твоего мобильника всегда будет положительным!
Предыдущая статья
 
Сайт Народ.Ру Интернет
Следующая статья
Пригласи друзей и счет твоего мобильника всегда будет положительным!

CreateDirectoryEx



Функция CreateDirectoryEx создает новый директорий с определенным путем, который сохраняет атрибуты определенного директория шаблона. Если основная файловая система поддерживает безопасности в файлах и директориях, функция прилагает определенный дескриптор безопасности к новому директорию. Новый директорий сохраняет другие атрибуты определенного директория шаблона. Отметьте, что CreateDirectoryEx имеет параметр шаблона, пока CreateDirectory нет.

BOOL CreateDirectoryEx(

LPCTSTR lpTemplateDirectory, // УКАЗАТЕЛЬ в строку пути директория шаблона LPCTSTR lpNewDirectory, // указателя в строку пути директория, чтобы создавать указатель LPSECURITY_ATTRIBUTES lpSecurityAttributes // в дескриптор безопасности
);


Параметры

lpTemplateDirectory

Точки на недействительный расторгнутую строку, которые определяют путь директория, чтобы использовать как шаблон при создании нового директория.

lpNewDirectory

Точки на недействительный расторгнутую строку, которые определяют путь директория, который нужно создаваться.

lpSecurityAttributes

Указатель в структуру SECURITY_ATTRIBUTES, которая определяет может возвращанная ручка быть унаследована процессами ребенка. Если lpSecurityAttributes НЕДЕЙСТВИТЕЛЕН, ручка не может быть унаследована.

Окно NT: член lpSecurityDescriptor структуры определяет дескриптор безопасности для нового директория. Если lpSecurityAttributes НЕДЕЙСТВИТЕЛЕН, директорий получает встроенный дескриптор безопасности. Целевая файловая система должна поддержать безопасности в файлах и директориях для этого параметра, чтобы воздействовать.
Окно 95: член lpSecurityDescriptor структуры проигнорирован.



Обратные Величины

Если функция добивается успеха, обратная величина ненулевая.
Если функция терпит неудачу, обратная величина нулевая. Для того, чтобы расширять информацию ошибки, назовите GetLastError.

Замечания

Функция CreateDirectoryEx позволяет Вам, чтобы создавать директории, которые наследуют информацию потока из других директориев. Эта функция полезная, например, при работе с директориями Macintosh, которые имеют поток ресурса, который - нужно правильно идентифицировать содержание директория как атрибут.

Windows NT:

Немного файловые системы, как например, NTFS, поддержка сжатия для индивидуальных файлов и директориев. В объемах отформатированных для такой файловой системы, новый директорий наследует атрибут сжатия своего родительского директория.

Вы можете получить ручку в директорий вызывая функцию CreateFile с флагом FILE_FLAG_BACKUP_SEMANTICS установленным. Смотри CreateFile для кодового примера.

Смотри Также

CreateDirectory, CreateFile, RemoveDirectory, SECURITY_ATTRIBUTES


Вверх Version 1.3, Oct 26 2010 © 2007, 2010, mrhx Вверх
 mrhx software  Русский перевод OpenGL  Русский перевод Win32 API
 
Используются технологии uCoz