Os Mknod
# Python2.x Python os.mknod() Method
[ Python OS File/Directory Methods](#)
* * *
### Overview
The `os.mknod()` method is used to create a file system node (a file, device special file, or named pipe) with a specified filename.
### Syntax
The syntax for the `mknod()` method is as follows:
os.mknod(filename[, mode=0600[, device=0]])
### Parameters
* **filename** -- The file system node to be created.
* **mode** -- The mode specifies the permissions for creating or using the node, combining (or bitwise) `stat.S_IFREG`, `stat.S_IFCHR`, `stat.S_IFBLK`, and `stat.S_IFIFO` (these constants are in the `stat` module). For `stat.S_IFCHR` and `stat.S_IFBLK`, the device defines the newly created device special file (possibly using `os.makedev()`); otherwise, it is ignored.
* **device** -- Optional, specifies the device for the file to be created.
### Return Value
This method does not return a value.
### Example
The following example demonstrates the use of the `mknod()` method:
#!/usr/bin/python# -*- coding: UTF-8 -*-import os import stat filename = '/tmp/tmpfile' mode = 0600|stat.S_IRUSR # File system node with different mode os.mknod(filename, mode)
The output of executing the above program is:
-rw-------. 1 root root 0 Apr 30 02:38 tmpfile
[ Python OS File/Directory Methods](#)
YouTip