__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# Copyright 2017 Virgil Dupras
# 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
# http://www.hardcoded.net/licenses/bsd_license
from gi.repository import GObject, Gio
from .exceptions import TrashPermissionError
from .util import preprocess_paths
def send2trash(paths):
paths = preprocess_paths(paths)
for path in paths:
try:
f = Gio.File.new_for_path(path)
f.trash(cancellable=None)
except GObject.GError as e:
if e.code == Gio.IOErrorEnum.NOT_SUPPORTED:
# We get here if we can't create a trash directory on the same
# device. I don't know if other errors can result in NOT_SUPPORTED.
raise TrashPermissionError("")
raise OSError(e.message)
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| IFileOperationProgressSink.py | File | 2.5 KB | 0644 |
|
| __init__.py | File | 741 B | 0644 |
|
| __main__.py | File | 949 B | 0644 |
|
| compat.py | File | 602 B | 0644 |
|
| exceptions.py | File | 996 B | 0644 |
|
| plat_gio.py | File | 884 B | 0644 |
|
| plat_osx.py | File | 801 B | 0644 |
|
| plat_osx_ctypes.py | File | 1.79 KB | 0644 |
|
| plat_osx_pyobjc.py | File | 994 B | 0644 |
|
| plat_other.py | File | 6.94 KB | 0644 |
|
| plat_win.py | File | 761 B | 0644 |
|
| plat_win_legacy.py | File | 4.9 KB | 0644 |
|
| plat_win_modern.py | File | 2.57 KB | 0644 |
|
| util.py | File | 516 B | 0644 |
|