Documentation ¶
Index ¶
- func NewFileInfo(objectInfo minio.ObjectInfo) os.FileInfo
- type S3
- type S3Manager
- func (s *S3Manager) BucketName() string
- func (s *S3Manager) Chmod(ppath string, mode os.FileMode) error
- func (s *S3Manager) Chown(ppath string, uid, gid int) error
- func (s *S3Manager) Clear() error
- func (s *S3Manager) Client() *minio.Client
- func (s *S3Manager) Download(ctx echo.Context, ppath string) error
- func (s *S3Manager) Edit(ctx echo.Context, ppath string, content string, encoding string) (interface{}, error)
- func (s *S3Manager) ErrIsNotExist(err error) bool
- func (s *S3Manager) Exists(ppath string) (bool, error)
- func (s *S3Manager) Get(ppath string) (*minio.Object, error)
- func (s *S3Manager) List(ctx echo.Context, ppath string, sortBy ...string) (err error, exit bool, dirs []os.FileInfo)
- func (s *S3Manager) ListTransfer(dirs []os.FileInfo) (dirList []echo.H, fileList []echo.H)
- func (s *S3Manager) Mkbucket(bucketName string, regions ...string) error
- func (s *S3Manager) Mkdir(ppath, newName string) error
- func (s *S3Manager) Put(reader io.Reader, objectName string, size int64) (err error)
- func (s *S3Manager) Remove(ppath string) error
- func (s *S3Manager) RemoveDir(ppath string) error
- func (s *S3Manager) Rename(ppath, newName string) error
- func (s *S3Manager) Search(ppath string, prefix string, num int) []string
- func (s *S3Manager) SetBucketName(bucketName string) *S3Manager
- func (s *S3Manager) Stat(ppath string) (minio.ObjectInfo, error)
- func (s *S3Manager) StatIsExists(f minio.ObjectInfo, err error) (bool, error)
- func (s *S3Manager) Upload(ctx echo.Context, ppath string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFileInfo ¶
func NewFileInfo(objectInfo minio.ObjectInfo) os.FileInfo
Types ¶
type S3 ¶
type S3 interface { GetObject(bucketName, objectName string, opts minio.GetObjectOptions) (*minio.Object, error) ListBuckets() ([]minio.BucketInfo, error) ListObjectsV2(bucketName, objectPrefix string, recursive bool, doneCh <-chan struct{}) <-chan minio.ObjectInfo MakeBucket(bucketName, location string) error PutObject(bucketName, objectName string, reader io.Reader, objectSize int64, opts minio.PutObjectOptions) (int64, error) RemoveBucket(bucketName string) error RemoveObject(bucketName, objectName string) error }
S3 is a client to interact with S3 storage.
type S3Manager ¶
type S3Manager struct { EditableMaxSize int64 // contains filtered or unexported fields }
func (*S3Manager) BucketName ¶
func (*S3Manager) ErrIsNotExist ¶
func (*S3Manager) ListTransfer ¶
func (*S3Manager) SetBucketName ¶
func (*S3Manager) Stat ¶
func (s *S3Manager) Stat(ppath string) (minio.ObjectInfo, error)
Stat 获取对象信息
func (*S3Manager) StatIsExists ¶
StatIsExists 对象是否存在
Click to show internal directories.
Click to hide internal directories.