forked from ucbdrive/3d-vehicle-tracking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rimpiazza.py
18 lines (14 loc) · 834 Bytes
/
rimpiazza.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os
# definire il percorso della cartella contenente i file .json
folder_path = "/media/michelangelo/7E9264A192645F9F/data/gta5-tracking/val/label"
# iterare attraverso tutti i file nella cartella
for filename in os.listdir(folder_path):
if filename.endswith("bdd.json"): # controllare se il file finisce con "bdd.json"
# aprire il file e leggere il contenuto
with open(os.path.join(folder_path, filename), "r") as f:
content = f.read()
# sostituire tutte le occorrenze di "./data/gta5_tracking/val/label/" con " /media/michelangelo/7E9264A192645F9F/data/gta5-tracking/val/label"
new_content = content.replace(" /media", "/media")
# scrivere il nuovo contenuto nel file
with open(os.path.join(folder_path, filename), "w") as f:
f.write(new_content)