Hi all, one of the options in my application is to browse all the images in a specified directory and move them to other directories (that could not exist). I have some ideas but I will be thankfully if you give me some other ideas before I program it. The only restriction is that the re-ubication of the image files has to be in a simple way like a drag-and-drop. I have thought in having a QListWidget with a thumbnailing of all the images in the "source" directory. This directory is inserted in a QLineEdit or chosen using a button connected to QFileDialog::getExistingDirectory. For the destination folder I have thought in having the same widgets: a list view, a line edit and the button. So the user only should has to select the destination folder and drag and drop all the files from the source directory to the destination. Another posssiblity could be in replacing the QListWidget in the destination for a tree showing the file system giving the possiblity to create new directories and drag the list widget items of the source directory to an entry of this tree. I don't know if this could be possible. I also have thought in having another tree in the source folder too... Anyway, what do you suggest me?

Thanks.