windows下的_mkdir 和 linux下的mkdir

本文详细介绍了Linux下的mkdir()函数与Windows下的_mkdir()的区别,主要在于Linux需要指定权限参数,而Windows只需路径。内容包括函数名称、语法、描述、返回值、错误处理、示例以及历史变更。
需要注意的是 windows下的_mkdir()只需要一个路径的参数,而linux下的mkdir()需要两个参数,第一个是路径,第二个是权限。以下是linux下的mkdir的讲解:
NAME
mkdir - make a directory
SYNOPSIS

#include <sys/stat.h>

int mkdir(const char *
path, mode_t mode);

DESCRIPTION

The mkdir() function shall create a new directory with name path. The file permission bits of the new directory shall be initialized from mode. These file permission bits of the mode argument shall be modified by the process' file creation mask.

When bits in mode other than the file permission bits are set, the meaning of these additional bits is implementation-defined.

The directory's user ID shall be set to the process' effective user ID. The directory's group ID shall be set to the group ID of the parent directory or to the effective group ID of the process. Implementations shall provide a way to initialize the directory's group ID to the group ID of the parent directory. Implementations may, but need not, provide an implementation-defined way to initialize the directory's group ID to the effective group ID of the calling process.

The newly created directory shall be an empty directory.

If path names a symbolic link, mkdir() shall fail and set errno to [EEXIST].

Upon successful completion, mkdir() shall mark for update the st_atime, st_ctime, and st_mtime fields of the directory. Also, the st_ctime and st_mtime fields of the directory that contains the new entry shall be marked for update.

RETURN VALUE

Upon successful completion, mkdir() shall return 0. Otherwise, -1 shall be returned, no directory shall be created, and errno shall be set to indicate the error.

ERRORS

The mkdir() function shall fail if:

[EACCES]
Search permission is denied on a component of the path prefix, or write permission is denied on the parent directory of the directory to be created.
[EEXIST]
The named file exists.
[ELOOP]
A loop exists in symbolic links encountered during resolution of the path argument.
[EMLINK]
The link count of the parent directory would exceed {LINK_MAX}.
[ENAMETOOLONG]
The length of the path argument exceeds {PATH_MAX} or a pathname component is longer than {NAME_MAX}.
[ENOENT]
A component of the path prefix specified by path does not name an existing directory or path is an empty string.
[ENOSPC]
The file system does not contain enough space to hold the contents of the new directory or to extend the parent directory of the new directory.
[ENOTDIR]
A component of the path prefix is not a directory.
[EROFS]
The parent directory resides on a read-only file system.

The mkdir() function may fail if:

[ELOOP]
More than {SYMLOOP_MAX} symbolic links were encountered during resolution of the path argument.
[ENAMETOOLONG]
As a result of encountering a symbolic link in resolution of the path argument, the length of the substituted pathname string exceeded {PATH_MAX}.

The following sections are informative.
EXAMPLES
Creating a Directory

The following example shows how to create a directory named /home/cnd/mod1, with read/write/search permissions for owner and group, and with read/search permissions for others.

#include <sys/types.h>
#include <sys/stat.h>

int status; ... status = mkdir("/home/cnd/mod1", S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
APPLICATION USAGE

None.

RATIONALE

The mkdir() function originated in 4.2 BSD and was added to System V in Release 3.0.

4.3 BSD detects [ENAMETOOLONG].

The POSIX.1-1990 standard required that the group ID of a newly created directory be set to the group ID of its parent directory or to the effective group ID of the creating process. FIPS 151-2 required that implementations provide a way to have the group ID be set to the group ID of the containing directory, but did not prohibit implementations also supporting a way to set the group ID to the effective group ID of the creating process. Conforming applications should not assume which group ID will be used. If it matters, an application can use chown() to set the group ID after the directory is created, or determine under what conditions the implementation will set the desired group ID.

FUTURE DIRECTIONS

None.

SEE ALSO

umask(), the Base Definitions volume of IEEE Std 1003.1-2001, <sys/stat.h>, <sys/types.h>

CHANGE HISTORY

First released in Issue 3. Included for alignment with the POSIX.1-1988 standard.

Issue 6

In the SYNOPSIS, the optional include of the <sys/types.h> header is removed.

The following new requirements on POSIX implementations derive from alignment with the Single UNIX Specification:

  • The requirement to include <sys/types.h> has been removed. Although <sys/types.h> was required for conforming implementations of previous POSIX specifications, it was not required for UNIX applications.

  • The [ELOOP] mandatory error condition is added.

  • A second [ENAMETOOLONG] is added as an optional error condition.

The following changes were made to align with the IEEE P1003.1a draft standard:

  • The [ELOOP] optional error condition is added.

### _mkdir() 函数的使用方法 `_mkdir()` 是 C/C++ 中用于创建目录的一个函数。它通常被用来在文件系统中新建一个指定名称的目录。以下是关于 `_mkdir()` 的详细介绍: #### 函数原型 在 Windows 平台上,`_mkdir()` 定义如下: ```c int _mkdir(const char *path); ``` 参数 `path` 表示要创建的新目录路径[^1]。 返回值说明: - 如果成功,则返回 0。 - 如果失败,则返回 -1,并设置全局变量 `errno` 来指示错误原因[^2]。 #### 使用示例 下面是一个简单的例子展示如何调用 `_mkdir()` 创建新目录: ```c #include <direct.h> // 包含 _mkdir 声明头文件 #include <stdio.h> #include <stdlib.h> int main(void){ const char* dirName = "test_directory"; if(_mkdir(dirName) != 0){ perror("Error creating directory"); }else{ printf("Directory created successfully\n"); } return EXIT_SUCCESS; } ``` 此程序尝试创建名为 “test_directory” 的目录;如果操作不成功会打印相应的错误消息[^3]。 #### 跨平台注意事项 需要注意的是,在 POSIX 系统(如 Linux macOS),应改用标准库中的 `mkdir( )` 函数替代 `_mkdir()` ,其定义略有不同,支持额外权限位设定: ```c #include <sys/stat.h> #include <sys/types.h> int mkdir(const char *pathname, mode_t mode); ``` 这里除了提供目标路径外还需要给出初始访问模式 (mode)[^4]。 #### 错误处理 当遇到无法完成的操作时,应该检查具体是什么样的问题导致了失败。可以利用 `perror()` 输出默认描述或者通过查阅 errno 获取更详细的诊断信息[^5]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值