mirror of https://github.com/Xhofe/alist
18 lines
474 B
Go
18 lines
474 B
Go
package fs
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/alist-org/alist/v3/internal/model"
|
|
"github.com/alist-org/alist/v3/internal/operations"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func link(ctx context.Context, path string, args model.LinkArgs) (*model.Link, model.Obj, error) {
|
|
storage, actualPath, err := operations.GetStorageAndActualPath(path)
|
|
if err != nil {
|
|
return nil, nil, errors.WithMessage(err, "failed get storage")
|
|
}
|
|
return operations.Link(ctx, storage, actualPath, args)
|
|
}
|