(bucket string, key string)
| 445 | } |
| 446 | |
| 447 | func (c *Client) CreateEmptyS3File(bucket string, key string) error { |
| 448 | return c.UploadReaderToS3(bytes.NewReader(nil), bucket, key) |
| 449 | } |
| 450 | |
| 451 | func (c *Client) UploadDirToS3(localDirPath string, bucket string, s3Dir string, ignoreFns ...files.IgnoreFn) error { |
| 452 | localRelPaths, err := files.ListDirRecursive(localDirPath, true, ignoreFns...) |
nothing calls this directly
no test coverage detected