Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
如果文件名和路径无效或无法访问,或者具有正确类型但操作系统不接受的其他参数,则os模块中的所有函数都会引发OSError。
os.mkdir()
Python中的方法用于使用指定的数字模式创建名为path的目录。如果要创建的目录已经存在,则此方法引发FileExistsError。
用法: os.mkdir(path, mode = 0o777, *, dir_fd = None)
参数:
path:代表文件系统路径的path-like对象。 path-like对象是表示路径的字符串或字节对象。
mode (可选):一个整数值,表示要创建的目录的模式。如果省略此参数,则使用默认值Oo777。
dir_fd(可选):引用目录的文件描述符。此参数的默认值为“无”。
如果指定的路径是绝对路径,则dir_fd将被忽略。
Note:参数列表中的“ *”表示以下所有参数(此处为“ dir_fd”)均为keyword-only参数,可以使用其名称而不是位置参数来提供它们。
返回类型:此方法不返回任何值。
代码1:使用os.mkdir()方法创建目录/文件
# Python program to explain os.mkdir() method
# importing os module
import os
# Directory
directory = "GeeksForGeeks"
# Parent Directory path
parent_dir = "/home/User/Documents"
# Path
path = os.path.join(parent_dir, directory)
# Create the directory
# 'GeeksForGeeks' in
# '/home / User / Documents'
os.mkdir(path)
print("Directory '%s' created" %directory)
# Directory
directory = "ihritik"
# Parent Directory path
parent_dir = "/home/User/Documents"
# mode
mode = 0o666
# Path
path = os.path.join(parent_dir, directory)
# Create the directory
# 'GeeksForGeeks' in
# '/home / User / Documents'
# with mode 0o666
os.mkdir(path, mode)
print("Directory '%s' created" %directory)
输出:
Directory 'GeeksForGeeks' created Directory 'ihritik' created
代码2:使用os.mkdir()方法时出现错误
# Python program to explain os.mkdir() method
# importing os module
import os
# Directory
directory = "GeeksForGeeks"
# Parent Directory path
parent_dir = "/home/User/Documents"
# Path
path = os.path.join(parent_dir, directory)
# Create the directory
# 'GeeksForGeeks' in
# '/home / User / Documents'
os.mkdir(path)
print("Directory '%s' created" %directory)
# if directory / file that
# is to be created already
# exists then 'FileExistsError'
# will be raised by os.mkdir() method
# Similarly, if the specified path
# is invalid 'FileNotFoundError' Error
# will be raised
输出:
Traceback (most recent call last): File "osmkdir.py", line 17, in os.mkdir(path) FileExistsError: [Errno 17] File exists: '/home/User/Documents/GeeksForGeeks'
代码3:使用os.mkdir()方法时处理错误
# Python program to explain os.mkdir() method
# importing os module
import os
# path
path = '/home/User/Documents/GeeksForGeeks'
# Create the directory
# 'GeeksForGeeks' in
# '/home/User/Documents'
try:
os.mkdir(path)
except OSError as error:
print(error)
输出:
[Errno 17] File exists: '/home/User/Documents/GeeksForGeeks'
参考: https://docs.python.org/3/library/os.html
相关用法
- Python os.dup()用法及代码示例
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python object()用法及代码示例
- Python bytes()用法及代码示例
- Python os.times()用法及代码示例
- Python os.chmod用法及代码示例
- Python hash()用法及代码示例
- Python os.ftruncate()用法及代码示例
- Python os.truncate()用法及代码示例
- Python os.fsdecode()用法及代码示例
- Python dict pop()用法及代码示例
- Python os.abort()用法及代码示例
- Python os.WEXITSTATUS()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.mkdir() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。