NewObject finds the Object at remote. If it can't be found it returns the error ErrorObjectNotFound. If remote points to a directory then it should return ErrorIsDir if possible without doing any extra work, otherwise ErrorObjectNotFound.
(ctx context.Context, remote string)
| 35 | // ErrorIsDir if possible without doing any extra work, |
| 36 | // otherwise ErrorObjectNotFound. |
| 37 | NewObject(ctx context.Context, remote string) (Object, error) |
| 38 | |
| 39 | // Put in to the remote path with the modTime given of the given size |
| 40 | // |
no outgoing calls