diff options
author | Steve Zatz <slzatz@gmail.com> | 2015-05-10 20:30:56 -0400 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-05-12 23:43:11 +0100 |
commit | c7df9c6c47855adcfd204100098e355358935dc3 (patch) | |
tree | 57c784467e25aa8fa4ce5cebad9427646c9e86af /docs/library | |
parent | f601390ef899a3b87b92d5075ded98a9766fdd6b (diff) |
stmhal: Add os.rename function.
Diffstat (limited to 'docs/library')
-rw-r--r-- | docs/library/os.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/library/os.rst b/docs/library/os.rst index df5ade327..e9b7d40bf 100644 --- a/docs/library/os.rst +++ b/docs/library/os.rst @@ -46,6 +46,10 @@ Functions Remove a directory. +.. function:: rename(old_path, new_path) + + Rename a file. + .. function:: stat(path) Get the status of a file or directory. |