Bladeren bron

fixbug:盘符问题

master-opt
yuan_rh 4 jaren geleden
bovenliggende
commit
d6416377ed
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. +2
    -2
      handle/handle.go

+ 2
- 2
handle/handle.go Bestand weergeven

@@ -525,7 +525,7 @@ func GetFolderFileInfo(conn *websocket.Conn,absolutePath string) error{
}

//文件目录处理
gobalRelativePath = filepath.Dir(absolutePath)+"\\"
gobalRelativePath = filepath.Dir(absolutePath)
err =filepath.Walk(absolutePath, myWalkfunc)

if err != nil {
@@ -552,7 +552,7 @@ func myWalkfunc(path string, info os.FileInfo, err error) error {
simpleFileInfo := new(simpleFileInfo)
simpleFileInfo.Name=info.Name()
simpleFileInfo.Extension=filepath.Ext(path)
simpleFileInfo.RelativePath=filepath.Dir(strings.Replace(path,gobalRelativePath,"",1))
simpleFileInfo.RelativePath=strings.Replace(path,gobalRelativePath,"",1)
simpleFileInfo.AbsolutePath=path
gobalFolderFileMap[path]=simpleFileInfo
return nil


Laden…
Annuleren
Opslaan