Write writes the given byte buffer into disk to the given file path.
(path string, buf []byte)
| 11 | // Write writes the given byte buffer into disk |
| 12 | // to the given file path. |
| 13 | func Write(path string, buf []byte) error { |
| 14 | return ioutil.WriteFile(path, buf, 0644) |
| 15 | } |
no outgoing calls