Go to file
Virgil Dupras 0f95d7506e v1.2.0 2011-03-16 10:27:41 +01:00
send2trash Check access and devices before attempting trash. 2011-03-13 14:40:52 -04:00
.hgignore Updated package metadata. 2010-07-07 11:59:11 +02:00
.hgtags Added tag 1.1.0 for changeset de5f43fcce5e 2010-10-18 12:13:42 +02:00
CHANGES v1.2.0 2011-03-16 10:27:41 +01:00
LICENSE Licensed under BSD. 2010-04-07 08:52:24 +02:00
MANIFEST.in Adjusted packaging metadata for 1.1.0. 2010-10-18 12:22:13 +02:00
README v1.2.0 2011-03-16 10:27:41 +01:00
setup.py v1.2.0 2011-03-16 10:27:41 +01:00
test_plat_other.py Modification to symlink test case (that will actually fail when it should -- find_mount_point using abspath instead of realpath.) 2011-03-13 15:35:14 -04: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 follows the trash specifications from freedesktop.org.

``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.