WriteFile writes 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)
| 24 | // WriteFile writes content to a file, creating it and parent directories if needed. |
| 25 | // mode is an optional POSIX-style permission mode. Pass nil to use the OS default. |
| 26 | WriteFile(path string, content string, mode *int) error |
| 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 |
no outgoing calls
no test coverage detected