package
1.2.120
Repository: https://github.com/searking/golang.git
Documentation: pkg.go.dev

# Functions

AppendAll appends data to a file named by filename.
AppendAllFrom appends data to a file named by filename from r until EOF or error.
AppendFileAll is the generalized open call; most users will use AppendAll instead.
AppendFileAllFrom is the generalized open call; most users will use AppendFileFrom instead.
TempAll creates a new temporary file in the directory dir, opens the file for reading and writing, and returns the resulting *os.File.
TempFileAll is the generalized open call; most users will use TempAll instead.
WriteAll writes data to a file named by filename.
WriteAllFrom writes data to a file named by filename from r until EOF or error.
WriteFileAll is the generalized open call; most users will use WriteAll instead.
WriteFileAllFrom is the generalized open call; most users will use WriteAllFrom instead.
WriteRenameAll writes data to a temp file and rename to the new file named by filename.
WriteRenameAllFrom writes data to a temp file from r until EOF or error, and rename to the new file named by filename.
WriteRenameFileAll is the generalized open call; most users will use WriteRenameAll instead.
WriteRenameFileAllFrom is the generalized open call; most users will use WriteRenameAllFrom instead.