()
| 365 | } |
| 366 | |
| 367 | func (o *Object) tempFileStartedUpload() bool { |
| 368 | started, err := o.CacheFs.cache.SearchPendingUpload(o.abs()) |
| 369 | if err != nil { |
| 370 | return false |
| 371 | } |
| 372 | return started |
| 373 | } |
| 374 | |
| 375 | // UnWrap returns the Object that this Object is wrapping or |
| 376 | // nil if it isn't wrapping anything |