WriteString a string to the file
(s string)
| 170 | |
| 171 | // WriteString a string to the file |
| 172 | func (fh *WriteFileHandle) WriteString(s string) (n int, err error) { |
| 173 | return fh.Write([]byte(s)) |
| 174 | } |
| 175 | |
| 176 | // Offset returns the offset of the file pointer |
| 177 | func (fh *WriteFileHandle) Offset() (offset int64) { |