| canonical_path/1 | |
| consult_config/2 | |
| cp_r/2 | |
| delete_each/1 | |
| format_error/1 | |
| mv/2 | |
| path_from_ancestor/2 | |
| reset_dir/1 | |
| resolve_link/1 | returns canonical target of path if path is a link, otherwise returns path. |
| rm_rf/1 | Remove files and directories. |
| split_dirname/1 | splits a path into dirname and basename. |
| symlink_or_copy/2 | |
| system_tmpdir/0 | |
| system_tmpdir/1 | |
| touch/1 | |
| try_consult/1 | |
| write_file_if_contents_differ/2 | backwards compat layer to pre-utf8 support. |
| write_file_if_contents_differ/3 | let the user pick the encoding required; there are no good heuristics for data encoding. |
canonical_path(Dir::string()) -> string()
consult_config(State::rebar_state:t(), Filename::string()) -> [[tuple()]]
cp_r(Sources::[string()], Dest::file:filename()) -> ok
delete_each(Rest) -> any()
format_error(X1) -> any()
mv(Source::string(), Dest::file:filename()) -> ok
path_from_ancestor(Target::string(), To::string()) -> {ok, string()} | {error, badparent}
reset_dir(Path) -> ok | {error, Reason}
resolve_link(Path::string()) -> string()
returns canonical target of path if path is a link, otherwise returns path
rm_rf(Target::string()) -> ok
Remove files and directories. Target is a single filename, directoryname or wildcard expression.
split_dirname(Path::string()) -> {string(), string()}
splits a path into dirname and basename
symlink_or_copy(Source, Target) -> any()
system_tmpdir() -> file:filename()
system_tmpdir(PathComponents) -> file:filename()
touch(Path) -> ok | {error, Reason}
try_consult(File) -> any()
write_file_if_contents_differ(Filename, Bytes) -> any()
backwards compat layer to pre-utf8 support
write_file_if_contents_differ(Filename, Bytes, X3) -> any()
let the user pick the encoding required; there are no good heuristics for data encoding
Generated by EDoc