1
0
mirror of https://github.com/schollz/croc synced 2024-07-08 11:55:46 +00:00

fix: prompt for overwriting when unzipping

This commit is contained in:
Zack 2024-05-20 08:31:47 -07:00
parent 13bc190f8b
commit b3668a6f5c

View File

@ -447,6 +447,16 @@ func UnzipDirectory(destination string, source string) error {
log.Fatalln(err)
}
// check if file exists
if _, err := os.Stat(filePath); err == nil {
prompt := fmt.Sprintf("\nOverwrite '%s'? (y/N) ", filePath)
choice := strings.ToLower(GetInput(prompt))
if choice != "y" && choice != "yes" {
fmt.Fprintf(os.Stderr, "skipping '%s'", filePath)
continue
}
}
dstFile, err := os.OpenFile(filePath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, f.Mode())
if err != nil {
log.Fatalln(err)