PHP » PYTHON |
login |
register |
about
|
PYTHON posix_mknod
is this article helpful?
|
Python replacement for PHP's posix_mknod
[
edit
| history
]
import os os.mknod(pathname) os.mknod(pathname, mode, os.makedev(major, minor)) posix_mknod(PHP 5 >= 5.1.0) posix_mknod — Create a special or ordinary file (POSIX.1) Description
bool posix_mknod
( string $pathname
, int $mode
[, int $major= 0
[, int $minor= 0
]] )
Creates a special or ordinary file. Parameters
Return ValuesReturns TRUE on success or FALSE on failure. Examples
Example #1 A posix_mknod() example
<?php
|
more
Recently updated
more
Most requested
|