(path string)
| 101 | } |
| 102 | |
| 103 | func ReadFileBytes(path string) ([]byte, error) { |
| 104 | return ReadFileBytesErrPath(path, path) |
| 105 | } |
| 106 | |
| 107 | func ReadFileBytesErrPath(path string, errMsgPath string) ([]byte, error) { |
| 108 | path, err := EscapeTilde(path) |
no test coverage detected