18 lines
190 B
Python
18 lines
190 B
Python
# -*- coding:utf-8 -*-
|
|
|
|
"""
|
|
Trash container
|
|
"""
|
|
|
|
|
|
def move_to_trash(files):
|
|
pass
|
|
|
|
|
|
def manage_trash():
|
|
""" Remove files that have been sitting there for too long """
|
|
pass
|
|
|
|
|
|
|