Categorygithub.com/modcloth/go-fileutils
modulepackage
0.0.0-20141210061911-f2bf9a2a6853
Repository: https://github.com/modcloth/go-fileutils.git
Documentation: pkg.go.dev

# README

go-fileutils

Build Status GoDoc

Documentation

# Functions

ChmodR is like `chmod -R`.
ChownR is like `chown -R`.
Cp is like `cp`.
CpR is like `cp -R` */.
CpWithArgs is a version of the Cp method that allows the passing of an arguments struct to further modify the copying behavior */.
MkdirP is `mkdir -p` / os.MkdirAll.
Mv is `mv` / os.Rename.
Rm is `rm` / os.Remove.
RmRF is `rm -rf` / os.RemoveAll.
Which is `which` / exec.LookPath.

# Structs

CpArgs is a list of arguments which can be passed to the CpWithArgs method.