Move funcs to other file

This commit is contained in:
2020-11-21 22:12:31 +01:00
parent f16a143125
commit 8a9bcbf62e
2 changed files with 41 additions and 34 deletions

39
file.go Normal file
View File

@ -0,0 +1,39 @@
package main
import (
"os"
"path/filepath"
"strconv"
)
func remove(path string) {
if !*force {
return
}
if *moveToFolder == "" {
os.Remove(path)
return
}
moveButDontOvewrite(path, *moveToFolder)
}
func moveButDontOvewrite(path string, targetPath string) {
num := 0
filename := filepath.Base(path)
target := filepath.Join(targetPath, filename)
for {
_, err := os.Stat(target)
if os.IsNotExist(err) {
os.Rename(path, target)
return
}
target = filepath.Join(targetPath, filename+"."+strconv.Itoa(num))
num++
}
}