Hello dear readers! Welcome back to another section of our tutorial on Python. In this tutorial guide, we are going to be studying about the Os mknod() method.
The os Python's mknod() method produces a filesystem node (file, device special file or named pipe) named filename.
The os Python's mknod() method produces a filesystem node (file, device special file or named pipe) named filename.
Syntax
The following below is the syntax for Python Os mknod() method -
os.mknod(filename[, mod=0600[, device=0]] )
RECOMMENDED POST: Python os.fchmod() Method with example
Parameter Details
- filename - The filesystem node to be created.
- mode - The mode specifies both the permission to make use of and the type of node to be created.
- device - This is the device special file created and it's optional to provide.
Return Value
It does not return any value.
Example
The following below is a simple example -
# !/usr/bin/python import os import stat filename = '/tmp/tmpfile' mode = 0600|stat.S_IRUSR # filesystem node specified with different modes os.mknod(filename, mode)
Output
When the above code is executed, it will produce thie following result -
-rw-------. 1 root root
RECOMMENDED POST: Python os.mkfifo() Method with example
Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial, we are going to be studying about the Python OS open() Method.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.