Skip to content

Commit

Permalink
Update move.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhuLvs authored Nov 27, 2024
1 parent 2140641 commit b4ab24a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions helper_scripts/move.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import os
import shutil

folder_a = '../data/valA'
folder_b = '../data/contact'
folder_c = '../data/valB' #B -> C
folder_a = './data/valA'
folder_b = './data/contact'
folder_c = './data/valB' #B -> C

a_file_prefixes = set()
for filename in os.listdir(folder_a):
Expand All @@ -18,4 +18,4 @@
shutil.move(source_path, target_path)
print(f"Moved {filename} to {folder_c}")

print("File move complete.")
print("File move complete.")

0 comments on commit b4ab24a

Please sign in to comment.