当前位置: 技术问答>linux和unix
linux 提供什么函数创建目录?头文件是那个?
来源: 互联网 发布时间:2015-02-17
本文导语: 不是在shll里面,我是说有什么函数可以使的?非内核里面,在应用层 | #include #include #include #include int mkdir(const char * pathname,mode_t mode); 正确返回:0 错误返回:-1 | #...
不是在shll里面,我是说有什么函数可以使的?非内核里面,在应用层
|
#include
#include
#include
#include
int mkdir(const char * pathname,mode_t mode);
正确返回:0
错误返回:-1
#include
#include
#include
int mkdir(const char * pathname,mode_t mode);
正确返回:0
错误返回:-1
|
# man 2 mkdir
==================================
#include
int mkdir(const char *path, mode_t mode);
……
RETURN VALUE
mkdir() returns one of the following values:
0 Successful completion.
-1 Failure. An error code is stored in errno.
==================================
#include
int mkdir(const char *path, mode_t mode);
……
RETURN VALUE
mkdir() returns one of the following values:
0 Successful completion.
-1 Failure. An error code is stored in errno.
|
#include
#include
int mkdir(const char *pathname, mode_t mode);
成功则为1,出错为-1
#include
int mkdir(const char *pathname, mode_t mode);
成功则为1,出错为-1