mirror of https://github.com/flaggo/pydu.git
add describtion for function in file.py
This commit is contained in:
parent
320cc8269d
commit
0989b94eb9
34
pydu/file.py
34
pydu/file.py
|
@ -82,6 +82,26 @@ def open_file(path, mode='wb+', buffer_size=-1, ignore_errors=False):
|
||||||
|
|
||||||
|
|
||||||
def copy(src, dst, ignore_errors=False, follow_symlinks=True):
|
def copy(src, dst, ignore_errors=False, follow_symlinks=True):
|
||||||
|
"""Copy data and mode bits ("cp src dst").
|
||||||
|
|
||||||
|
Both the source and destination may be a directory.
|
||||||
|
|
||||||
|
When copy a directory,which a symlink, If the optional symlinks
|
||||||
|
flag is true, symbolic links in the source tree result in symbolic
|
||||||
|
links in the destination tree; if it is false, the contents of
|
||||||
|
the files pointed to by symbolic links are copied. If the file
|
||||||
|
pointed by the symlink doesn't exist, an exception will be raise
|
||||||
|
|
||||||
|
When copy a file,if follow_symlinks is false and src is a symbolic
|
||||||
|
link, a new symlink will be created instead of copying the file it
|
||||||
|
points to,else the contents of the file pointed to by symbolic links
|
||||||
|
is copied.
|
||||||
|
|
||||||
|
If source and destination are the same file, a SameFileError will be
|
||||||
|
raised.
|
||||||
|
|
||||||
|
If ignore_errors is set, errors are ignored.
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
if os.path.isdir(src):
|
if os.path.isdir(src):
|
||||||
shutil.copytree(src, dst, symlinks=follow_symlinks)
|
shutil.copytree(src, dst, symlinks=follow_symlinks)
|
||||||
|
@ -99,8 +119,14 @@ def touch(path):
|
||||||
with open(path, 'w'):
|
with open(path, 'w'):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
if not WINDOWS:
|
||||||
|
def symlink(src, dst, overwrite=False, ignore_errors=False):
|
||||||
|
"""Create a symbolic link pointing to source named link_name.
|
||||||
|
|
||||||
def symlink(src, dst, overwrite=False, ignore_errors=False):
|
If dist is exist and overwrite is true,a new symlink will be created
|
||||||
|
|
||||||
|
If ignore_errors is set, errors are ignored.
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
if os.path.exists(dst):
|
if os.path.exists(dst):
|
||||||
if overwrite:
|
if overwrite:
|
||||||
|
@ -115,6 +141,12 @@ def symlink(src, dst, overwrite=False, ignore_errors=False):
|
||||||
|
|
||||||
if not WINDOWS:
|
if not WINDOWS:
|
||||||
def link(src, dst, overwrite=False, ignore_errors=False):
|
def link(src, dst, overwrite=False, ignore_errors=False):
|
||||||
|
"""Create a hard link pointing to source named link_name.
|
||||||
|
|
||||||
|
If dist is exist and overwrite is true,a new symlink will be created
|
||||||
|
|
||||||
|
If ignore_errors is set, errors are ignored.
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
if os.path.exists(dst):
|
if os.path.exists(dst):
|
||||||
if overwrite:
|
if overwrite:
|
||||||
|
|
Loading…
Reference in New Issue