Common filesystem operations
Get a config path to read or write some configuration.
Parameters: | args – a list of subfolders. Those will be created when needed |
---|
Get a config path to read or write some cached data
Parameters: | args – a list of subfolders. Those will be created when needed |
---|
Get a config path to read or write some persistent data
Parameters: | args – a list of subfolders. Those will be created when needed |
---|
Helper for get_*_path methods
Get the current user name
Recursive mkdir (do not fail if file exists)
ln (do not fail if file exists)
Write the data to out_path if the content is different
Configure a file. :param in_path: input file :param out_path: output file
The out_path needs not to exist, missing leading directories will be created if necessary.
If copy_only is True, the contents will be copied “as is”.
If not, we will use the args and kwargs parameter as in:
in_content.format(*args, **kwargs)
Install a directory or a file to a destination.
If filter_fun is not None, then the file will only be installed if filter_fun(relative/path/to/file) returns True.
If dest does not exist, it will be created first.
When installing files, if the destination already exists, it will be removed first, then overwritten by the new file.
This function will preserve relative symlinks between directories, used for instance in Mac frameworks:
|__ Versions
|__ Current -> 4.0
|__ 4 -> 4.0
|__ 4.0
Return the list of files installed (with relative paths)
Copy a source file to a destination but do not overwrite dest if it is more recent than src
Create any missing directories when necessary
If dest is a directory, src will be copied inside dest.
” Return True if output_path exists and is more recent than input_path
Copy a source to a destination but only copy the files under version control. Assumes that src is inside a git worktree
This one can take a file or a directory. Contrary to shutil.remove or os.remove, it:
Please avoid using shutil.rmtree ...
Move a file into a directory, but do not crash if dest/src exists
Returns a sorted list of all the files present in a directory, relative to this directory.
For instance, with:
foo
|__ eggs
| |__ c
| |__ d
|__ empty
|__ spam
|__a
|__b
ls_r(foo) returns: [“eggs/c”, “eggs/d”, “empty/”, “spam/a”, “spam/b”]
find program in the environment PATH :return: path to program if found, None otherwise
Returns a POSIX path from a DOS path :param fix_drive: if True, will replace c: by /c/ (ala mingw)
Return a DOS path from a “windows with /” path. Useful because people sometimes use forward slash in environment variable, for instance
Return an absolute, native path from a path, :param normcase: make sure the path is all lower-case on case-insensitive filesystems
Returns True if a is inside b
>>> is_path_inside("foo/bar", "foo")
True
>>> is_path_inside("gui/bar/libfoo", "lib")
False
Check if a path is empty
This is a nice wrapper around tempfile module.
Usage:
with TempDir("foo-bar") as temp_dir:
subdir = os.path.join(temp_dir, "subdir")
do_foo(subdir)
This piece of code makes sure that:
Change the current working dir
Filter function to only install runtime components of packages
Returns True if the file is a broken symlink
Returns True if the file is binary
Returns true if the file: * is executable * is a binary (i.e not a script)
Preserve file metadata (permissions and times)