Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
os.mknod()
Python中的方法用于创建文件系统节点,即具有指定路径名的文件,设备专用文件或命名管道。
用法: os.mknod(path, mode = 0o600, device = 0, *, dir_fd = None)
参数:
path:代表文件系统路径的path-like对象。
device(可选):这定义了新创建的设备文件。此参数的默认值为0。
dir_fd(可选):这是引用目录的文件描述符。
返回类型:此方法不返回任何值。
代码:用于os.mknod()
方法
# Python3 program to explain os.mknod() method
# importing os module
import os
# importing stat module
import stat
# Path
path = "filex.txt"
# Permission to use
per = 0o600
# type of node to be created
node_type = stat.S_IRUSR
mode = per | node_type
# Create a file sytem node
# with specified permission
# and type using
# os.mknod() method
os.mknod(path, mode)
print("Filesystem node is created successfully")
输出:
File system node is created successfully
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.mknod() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。