|
|
|
|
|
|
|
|
|
copy(files,
target_dir,
create_target=False)
Copy one or more files to a target directory. |
source code
|
|
|
touch(files,
times=None)
Similar to the Unix touch command, this function: |
source code
|
|
list
|
pathsplit(path)
Split a path into an array of path components, using the file separator
('/' on POSIX systems, '' on Windows) that's appropriate for the
underlying operating system. |
source code
|
|
|
__find_matches(pattern_pieces,
directory)
Used by eglob. |
source code
|
|
list
|
eglob(pattern,
directory=' . ' )
Extended glob function that supports the all the wildcards supported
by the Python standard glob routine, as well as a special "**"
wildcard that recursively matches any directory. |
source code
|
|
str
|
universal_path(path)
Converts a path name from its operating system-specific format to a
universal path notation. |
source code
|
|
str
|
native_path(path)
Converts a path name from universal path notation to the operating
system-specific format. |
source code
|
|