AppendFile appends content to a file, creating it and parent directories if needed. mode is an optional POSIX-style permission mode. Pass nil to use the OS default.
(path string, content string, mode *int)
| 27 | // AppendFile appends content to a file, creating it and parent directories if needed. |
| 28 | // mode is an optional POSIX-style permission mode. Pass nil to use the OS default. |
| 29 | AppendFile(path string, content string, mode *int) error |
| 30 | // Exists checks whether the given path exists. |
| 31 | Exists(path string) (bool, error) |
| 32 | // Stat returns metadata about a file or directory. |
no outgoing calls
no test coverage detected