PHP » PYTHON |
login |
register |
about
|
PYTHON svn_mkdir
is this article helpful?
|
Python replacement for PHP's svn_mkdir
[
edit
| history
]
import os import errno try: os.makedirs(path) except OSError as exception: if exception.errno != errno.EEXIST: raise svn_mkdir(PECL svn >= 0.4.0) svn_mkdir — Creates a directory in a working copy or repository Description
bool svn_mkdir
( string $path
)
Creates a directory in a working copy or repository. Parameters
Return ValuesReturns TRUE on success or FALSE on failure. |
more
Recently updated
more
Most requested
more
Last requests
|