Exists checks if file with fileKey path exists or not.
(fileKey string)
| 101 | |
| 102 | // Exists checks if file with fileKey path exists or not. |
| 103 | func (s *System) Exists(fileKey string) (bool, error) { |
| 104 | return s.bucket.Exists(s.ctx, fileKey) |
| 105 | } |
| 106 | |
| 107 | // Attributes returns the attributes for the file with fileKey path. |
| 108 | // |
no outgoing calls