Fix filepath bug

This commit is contained in:
Evan Su 2021-08-11 14:45:29 -04:00 committed by GitHub
parent bb86a1503e
commit 132ca73074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -2,7 +2,7 @@ package main
/* /*
Picocrypt v1.17 Picocrypt v1.16
Copyright (c) Evan Su (https://evansu.cc) Copyright (c) Evan Su (https://evansu.cc)
Released under a GNU GPL v3 License Released under a GNU GPL v3 License
https://github.com/HACKERALERT/Picocrypt https://github.com/HACKERALERT/Picocrypt
@ -70,7 +70,7 @@ import (
) )
var version = "v1.17" var version = "v1.16"
//go:embed NotoSans-Regular.ttf //go:embed NotoSans-Regular.ttf
var font []byte var font []byte
@ -1026,6 +1026,9 @@ func work(){
status = "Recombining file..." status = "Recombining file..."
total := 0 total := 0
if strings.HasSuffix(inputFile,".pcv"){
inputFile = inputFile[:len(inputFile)-4]
}
for{ for{
_,err := os.Stat(fmt.Sprintf("%s.%d",inputFile+".pcv",total)) _,err := os.Stat(fmt.Sprintf("%s.%d",inputFile+".pcv",total))
if err!=nil{ if err!=nil{
@ -1324,7 +1327,6 @@ func work(){
if recombine{ if recombine{
os.Remove(inputFile) os.Remove(inputFile)
} }
os.Remove(outputFile)
return return
} }
} }