mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-31 12:00:04 -07:00
12 lines
418 B
Python
12 lines
418 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
|