mirror of
https://git.sr.ht/~cadence/NewLeaf
synced 2024-11-14 03:57:31 +00:00
Fix temporary file removal
This commit is contained in:
parent
7ed3248104
commit
0f877b06bc
@ -3,7 +3,9 @@ import os
|
||||
def get_created_files(id):
|
||||
if id[0] == "-":
|
||||
id = "_" + id[1:] # youtube-dl changes - to _ at the start, presumably to not accidentally trigger switches with * in shell
|
||||
return (f for f in os.listdir() if f.startswith("{}_".format(id)))
|
||||
id += "_"
|
||||
trim_id = id.lstrip("-_")
|
||||
return (f for f in os.listdir() if f.startswith(id) or f.startswith(trim_id))
|
||||
|
||||
def clean_up_temp_files(id):
|
||||
created_files = get_created_files(id)
|
||||
|
Loading…
Reference in New Issue
Block a user