DirSetModTime sets the directory modtime for dir
(ctx context.Context, dir string, modTime time.Time)
| 612 | |
| 613 | // DirSetModTime sets the directory modtime for dir |
| 614 | func (f *Fs) DirSetModTime(ctx context.Context, dir string, modTime time.Time) error { |
| 615 | do := f.Fs.Features().DirSetModTime |
| 616 | if do == nil { |
| 617 | return fs.ErrorNotImplemented |
| 618 | } |
| 619 | return do(ctx, f.cipher.EncryptDirName(dir), modTime) |
| 620 | } |
| 621 | |
| 622 | // Rmdir removes the directory (container, bucket) if empty |
| 623 | // |
nothing calls this directly
no test coverage detected