acl  3.5.3.0
acl_make_dirs.h
浏览该文件的文档.
1 #ifndef ACL_MAKE_DIRS_INCLUDE_H
2 #define ACL_MAKE_DIRS_INCLUDE_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 #include "acl_define.h"
9 
10 /**
11  * 功能: 创建多级目录结构
12  * 如创建 "/tmp/dir1/dir2" (for unix) 或 "C:\test\test1\test2" (for win32)
13  * @param path 一级或多级目录路径
14  * @param perms 创建权限(如: 0755, 0777, 0644 ...)
15  * @return 0: OK; -1: Err
16  */
17 ACL_API int acl_make_dirs(const char *path, int perms);
18 
19 #ifdef __cplusplus
20 }
21 #endif
22 
23 #endif
24 
ACL_API int acl_make_dirs(const char *path, int perms)