I'm trying to move (delete) a file to a Trash Can (in Linux) using C++ (also using QT4 for GUI). Unfortunately it seems to be quite difficult to do so and as far as I can tell there isn't a unified API for it.

I would like for my application to run not only on KDE but on GNOME, Xfce and other Linux desktop environments. That's why I'm searching for a more universal approach.

The best I could find so far is:

  • send2trash - but that's using Python/QT4 and not C++/QT4
  • trash-cli - this has the drawback of being a stand alone command line program and not a library

I would be happy with any approach that requires as little desktop environment specific code as possible. Or in other words that's as much independent from KDE/GNOME/Xfce components as possible.

Any help in finding a solution (if there even is one) would be greatly appreciated.

link|improve this question
1  
Can't you look at how trash-cli does it? – R. Martinho Fernandes Jul 21 '11 at 13:08
3  
This link might help you: ramendik.ru/docs/trashspec.html – SirDarius Jul 21 '11 at 13:11
You are both right, but that would be a last resort solution. It's reinventing the wheel. In other words instead of using a lib it would mean writing one. Also trash-cli just like send2trash is written in Python in which I have no experience. – Engos Jul 21 '11 at 13:22
4  
The original FreeDesktop spec is here; AFAIK at least KDE, Gnome and XFCE follow it, and it's the one supported by trash-cli. – Matteo Italia Jul 21 '11 at 13:31
feedback

4 Answers

The answer is in

http://www.freedesktop.org/wiki/Specifications/trash-spec

For every user a “home trash” directory MUST be available. Its name and location are $XDG_DATA_HOME/Trash

you only need to write C++ code move your file into such directory.

You can move files using boost file system and you can retrieve the XDG_DATA_HOME value using cstlib getenv.

link|improve this answer
1  
Is it likely that the "MUST" means "IF you are to conform"? As it is, my Redhat Enterprise Linux box at work does not have a XDG_DATA_HOME environment var set by default. My Trash is in $HOME/Desktop/Trash/.directory ... – Don Wakefield Jul 24 '11 at 15:49
I run Ubuntu 11.04 and there is no such folder in my home directory. But cstlib getenv will be useful for me in other ways, thank you. – Engos Jul 24 '11 at 15:56
How widely is this implemented? – Paŭlo Ebermann Jul 24 '11 at 17:33
2  
freedesktop.org/wiki/Specifications lists this under Draft specifications that are new and not yet widely used. – Paŭlo Ebermann Jul 24 '11 at 17:52
Thx, Paŭlo. That explains a lot. – Engos Jul 24 '11 at 22:11
feedback

As far as I know there's no standard trash can in Linux in the first place.

link|improve this answer
OP seems to be well aware that this feature lies in each window manager. – André Caron Jul 21 '11 at 13:17
5  
Sorry, you are wrong: freedesktop.org/wiki/Specifications/trash-spec – Juliano Jul 21 '11 at 14:07
Today I learned. Sounds like a useful link to OP tbh. – dascandy Jul 21 '11 at 14:40
feedback

Why not find a terminal command to move the files and then call system() to run it for you inside your C++ program?

This might (I haven't tested it) be a possible one-liner in Linux to move files to the trash via the terminal. You would just pass the command as a quoted string to system() and call it in your C++ implementation.

link|improve this answer
It's similar to the trash-cli I've mentioned in my original post. The problem with your solution is that it doesn't account for Trash Cans and files on other partitions/drives. It just moves them (and if it's on another drive - copies them between drives) to your home Trash Can. Thank you for your answer anyway. – Engos Jul 23 '11 at 11:14
feedback

I'm looking for a C/C++ solution too. One way would be to dig into Nautilus/Thunar/Dolphin sources and extract the functionality from there. The other is to try to write C/C++ port of trash-cli, the core is in trash.py with just ~600 lines of python code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.