Put in to the remote path with the modTime given of the given size
(ctx context.Context, in io.Reader, src fs.ObjectInfo, options ...fs.OpenOption)
| 1507 | |
| 1508 | // Put in to the remote path with the modTime given of the given size |
| 1509 | func (f *Fs) Put(ctx context.Context, in io.Reader, src fs.ObjectInfo, options ...fs.OpenOption) (fs.Object, error) { |
| 1510 | fs.Debugf(f, "put data at '%s'", src.Remote()) |
| 1511 | return f.put(ctx, in, src, options, f.Fs.Put) |
| 1512 | } |
| 1513 | |
| 1514 | // PutUnchecked uploads the object |
| 1515 | func (f *Fs) PutUnchecked(ctx context.Context, in io.Reader, src fs.ObjectInfo, options ...fs.OpenOption) (fs.Object, error) { |