File size: 682 Bytes
619f93d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | package crypt
import (
stdpath "path"
"path/filepath"
"strings"
)
// will give the best guessing based on the path
func guessPath(path string) (isFolder, secondTry bool) {
if strings.HasSuffix(path, "/") {
//confirmed a folder
return true, false
}
lastSlash := strings.LastIndex(path, "/")
if !strings.Contains(path[lastSlash:], ".") {
//no dot, try folder then try file
return true, true
}
return false, true
}
func (d *Crypt) encryptPath(path string, isFolder bool) string {
if isFolder {
return d.cipher.EncryptDirName(path)
}
dir, fileName := filepath.Split(path)
return stdpath.Join(d.cipher.EncryptDirName(dir), d.cipher.EncryptFileName(fileName))
}
|