You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
642 B
29 lines
642 B
package controllers
|
|
|
|
import (
|
|
"github.com/HFO4/cloudreve/service/explorer"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// CreateDirectory 创建目录
|
|
func CreateDirectory(c *gin.Context) {
|
|
var service explorer.DirectoryService
|
|
if err := c.ShouldBindJSON(&service); err == nil {
|
|
res := service.CreateDirectory(c)
|
|
c.JSON(200, res)
|
|
} else {
|
|
c.JSON(200, ErrorResponse(err))
|
|
}
|
|
}
|
|
|
|
// ListDirectory 列出目录下内容
|
|
func ListDirectory(c *gin.Context) {
|
|
var service explorer.DirectoryService
|
|
if err := c.ShouldBindUri(&service); err == nil {
|
|
res := service.ListDirectory(c)
|
|
c.JSON(200, res)
|
|
} else {
|
|
c.JSON(200, ErrorResponse(err))
|
|
}
|
|
}
|