mirror of https://github.com/Xhofe/alist
🐛 fix webdav
parent
f25b557327
commit
2434ac54d0
|
@ -24,14 +24,7 @@ func Files(driver base.Driver, account *model.Account, path string) ([]model.Fil
|
||||||
}
|
}
|
||||||
|
|
||||||
func File(driver base.Driver, account *model.Account, path string) (*model.File, error) {
|
func File(driver base.Driver, account *model.Account, path string) (*model.File, error) {
|
||||||
file, _, err := Path(driver, account, path)
|
return driver.File(path, account)
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if file == nil {
|
|
||||||
return nil, base.ErrNotFolder
|
|
||||||
}
|
|
||||||
return file, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func MakeDir(driver base.Driver, account *model.Account, path string, clearCache bool) error {
|
func MakeDir(driver base.Driver, account *model.Account, path string, clearCache bool) error {
|
||||||
|
|
|
@ -46,7 +46,7 @@ func (h *Handler) stripPrefix(p string) (string, int, error) {
|
||||||
func isPathExist(ctx context.Context, fs *FileSystem, path string) (bool, FileInfo) {
|
func isPathExist(ctx context.Context, fs *FileSystem, path string) (bool, FileInfo) {
|
||||||
file, err := fs.File(path)
|
file, err := fs.File(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Debug(path, err)
|
log.Debugln(path, err)
|
||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
return true, file
|
return true, file
|
||||||
|
|
Loading…
Reference in New Issue