-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathio.go
35 lines (31 loc) · 754 Bytes
/
io.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package fss3
import (
"bytes"
"io"
"io/ioutil"
)
// Write writes len(p) bytes from p to the object at key.
func (f *File) Write(p []byte) (int, error) {
buf := bytes.NewBuffer(p)
ui, err := f.fs.fss3.putObject(f.fileInfo.info.Key, buf, int64(buf.Len()), nil)
if err != nil {
return 0, err
}
return int(ui.Size), nil
}
// WriteString writes a string to the object at key.
func (f *File) WriteString(s string) (int, error) {
return f.Write([]byte(s))
}
// WriteTo writes the object data to w until there's no more data to write
func (f *File) WriteTo(w io.Writer) (int64, error) {
data, err := ioutil.ReadAll(f)
if err != nil {
return 0, err
}
n, err := w.Write(data)
if err != nil {
return int64(n), err
}
return int64(n), nil
}