mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 17:40:24 -08:00
15 lines
441 B
Python
15 lines
441 B
Python
from .api import shell
|
|
|
|
|
|
def get_recycle_bin_confirm():
|
|
settings = shell.SHELLSTATE()
|
|
shell.SHGetSetSettings(settings, shell.SSF_NOCONFIRMRECYCLE, False)
|
|
return not settings.no_confirm_recycle
|
|
|
|
|
|
def set_recycle_bin_confirm(confirm=False):
|
|
settings = shell.SHELLSTATE()
|
|
settings.no_confirm_recycle = not confirm
|
|
shell.SHGetSetSettings(settings, shell.SSF_NOCONFIRMRECYCLE, True)
|
|
# cross fingers and hope it worked
|