You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
422 B
21 lines
422 B
import os
|
|
import shutil
|
|
from os.path import exists
|
|
|
|
|
|
def _listdir(d): # listdir with full path
|
|
return [os.path.join(d, f) for f in os.listdir(d)]
|
|
|
|
|
|
def cleanup(reddit_id) -> int:
|
|
"""Deletes all temporary assets in assets/temp
|
|
|
|
Returns:
|
|
int: How many files were deleted
|
|
"""
|
|
directory = f"../assets/temp/{reddit_id}/"
|
|
if exists(directory):
|
|
shutil.rmtree(directory)
|
|
|
|
return 1
|