2017-08-04 00:52:19 +00:00
|
|
|
# Copyright 2017 Virgil Dupras
|
2010-04-07 06:52:24 +00:00
|
|
|
|
2017-08-04 00:52:19 +00:00
|
|
|
# This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
|
|
# which should be included with this package. The terms are also available at
|
2010-04-07 06:52:24 +00:00
|
|
|
# http://www.hardcoded.net/licenses/bsd_license
|
|
|
|
|
2013-07-19 22:42:32 +00:00
|
|
|
from __future__ import unicode_literals
|
2020-06-03 16:49:41 +00:00
|
|
|
from platform import version
|
|
|
|
|
|
|
|
# if windows is vista or newer and pywin32 is available use IFileOperation
|
|
|
|
if int(version().split(".", 1)[0]) >= 6:
|
|
|
|
try:
|
|
|
|
# Attempt to use pywin32 to use IFileOperation
|
|
|
|
from .plat_win_modern import send2trash
|
|
|
|
except ImportError:
|
|
|
|
# use SHFileOperation as fallback
|
|
|
|
from .plat_win_legacy import send2trash
|
|
|
|
else:
|
|
|
|
# use SHFileOperation as fallback
|
|
|
|
from .plat_win_legacy import send2trash
|