1
0
Форк 0
Go to file
Virgil Dupras 506e48b2e0 v1.1.0
--HG--
branch : py3k
2010-10-18 12:13:37 +02:00
send2trash Converted the compiled win module to ctypes. 2010-10-17 18:00:56 +01:00
.hgignore Updated package metadata. 2010-07-07 11:59:11 +02:00
.hgtags Added tag 1.0.1 for changeset a7e04d8e47e1 2010-04-19 11:25:35 +02:00
CHANGES v1.1.0 2010-10-18 12:13:37 +02:00
LICENSE Licensed under BSD. 2010-04-07 08:52:24 +02:00
README v1.1.0 2010-10-18 12:13:37 +02:00
setup.py v1.1.0 2010-10-18 12:13:37 +02:00

README

==================================================
Send2Trash -- Send files to trash on all platforms
==================================================

This is a Python 3 package. The Python 2 package is at http://pypi.python.org/pypi/Send2Trash .

Send2Trash is a small package that sends files to the Trash (or Recycle Bin) *natively* and on
*all platforms*. On OS X, it uses native ``FSMoveObjectToTrashSync`` Cocoa calls, on Windows, it uses native (and ugly) ``SHFileOperation`` win32 calls. On other platforms, it moves the file to the first folder it finds that looks like a trash (so far, it's known to work on Ubuntu).

``ctypes`` is used to access native libraries, so no compilation is necessary.

Installation
------------

Download the source from http://hg.hardcoded.net/send2trash and install it with::

>>> python setup.py install

Usage
-----

>>> from send2trash import send2trash
>>> send2trash('some_file')

When there's a problem ``OSError`` is raised.