# Packages
Package gorequest inspired by Nodejs SuperAgent provides easy-way to write http client.
# Functions
AppendContents appends the contents of the string to filename.
AppendString appends the contents of the string to filename.
Basename returns the last element of path.
Chmod changes the mode of the named file to mode.
Chown changes the numeric uid and gid of the named file.
No description provided by the author
Copy makes a copy of the file source to dest.
Dirname returns all but the last element of path, typically the path's directory.
Exec runs the command and returns its standard output as string.
Exists checks if the given filename exists.
Extname returns the file name extension used by path.
Find returns the FilesInfo([]FileInfo) of all files matching pattern or nil if there is no matching file.
GetContents reads the file named by filename and returns the contents as string.
GetFileInfo returns a FileInfo describing the named file.
Md5 returns a MD5 hash of file.
No description provided by the author
Mkdir creates a new directory with the specified name and permission bits.
MkdirAll creates a directory named path, along with any necessary parents.
MkdirP creates a directory named path, along with any necessary parents.
Mode return the FileMode of the given filename.
ModTime return the Last Modified Time of the given filename.
ModTimeUnix return the Last Modified Unix Timestamp of the given filename.
ModTimeUnixNano return the Last Modified Unix Time of nanoseconds of the given filename.
Perm return the Unix permission bits of the given filename.
PutContents writes the contents of the string to filename.
No description provided by the author
Read reads the file named by filename and returns the contents.
ReadString reads the file named by filename and returns the contents as string.
Remove removes the named file or directory.
RemoveAll removes path and any children it contains.
Rename renames (moves) a file.
Rmdir removes path and any children it contains.
Sha1 returns a SHA1 hash of file.
Size return the size of the given filename.
No description provided by the author
TempFile creates a new temporary file in the default directory for temporary files (see os.TempDir), opens the file for reading and writing, and returns the resulting *os.File.
TempName creates a new temporary file in the default directory for temporary files (see os.TempDir), opens the file for reading and writing, and returns the filename.
No description provided by the author
Unlink removes the named file or directory.
Write writes data to a file named by filename.
WriteString writes the contents of the string to filename.
# Constants
No description provided by the author