os.open does r/d as default which makes a call to open a dir invalid this should fix this problem

This commit is contained in:
Platin21
2022-02-05 23:12:55 +01:00
parent a724573bb3
commit 8b1100bf2b
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -114,7 +114,6 @@ main :: proc() {
filepath.walk(path, walk_files);
for file in files {
fmt.println(file);
backup_path := strings.concatenate({file, "_bk"});
defer delete(backup_path);