Add files via upload

This commit is contained in:
Akash Bora
2023-04-30 22:31:15 +05:30
committed by GitHub
parent 11705e2415
commit 44f529073f

View File

@@ -33,9 +33,9 @@ def mosh(infile, outfile, m, c, n, a, f, k):
#define temp directory and files
temp_nb = random.randint(10000, 99999)
temp_dir = "temp-" + str(temp_nb)
temp_hdrl = temp_dir +"\\hdrl.bin"
temp_movi = temp_dir +"\\movi.bin"
temp_idx1 = temp_dir +"\\idx1.bin"
temp_hdrl = os.path.join(temp_dir,"hdrl.bin")
temp_movi = os.path.join(temp_dir,"movi.bin")
temp_idx1 = os.path.join(temp_dir,"idx1.bin")
os.mkdir(temp_dir)