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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。