mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-06-16 05:55:33 +00:00
fix folder path
This commit is contained in:
parent
d89f1b6dae
commit
cc4892d3c5
@ -281,9 +281,8 @@ func GetDownloadSingleFile(ctx echo.Context) error {
|
|||||||
// @Router /file/dirpath [get]
|
// @Router /file/dirpath [get]
|
||||||
func DirPath(ctx echo.Context) error {
|
func DirPath(ctx echo.Context) error {
|
||||||
var req ListReq
|
var req ListReq
|
||||||
if err := ctx.Bind(&req); err != nil {
|
path := ctx.QueryParam("path")
|
||||||
return ctx.JSON(common_err.CLIENT_ERROR, model.Result{Success: common_err.CLIENT_ERROR, Message: common_err.GetMsg(common_err.CLIENT_ERROR), Data: err.Error()})
|
req.Path = path
|
||||||
}
|
|
||||||
req.Validate()
|
req.Validate()
|
||||||
info, err := service.MyService.System().GetDirPath(req.Path)
|
info, err := service.MyService.System().GetDirPath(req.Path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user