Problem
I need to make a dialog, in which there are two progress bars: One for total progress (if multiple files copied / moved / deleted) and one for the current file's progress.
I basically need to have some way of copying, moving and deleting files and know the progress of the corresponding process in order to update my visuals.
I already found a question about the copying problem here, but this does not really work for moving, because if you move files around on the same disk, they usually do not get copied but rather the directory of them gets changed. (Moving to other disk results in copying and deleting) Also I do not know how to achieve the deleting process.
What I have already tried
Well, given that I posted a link to a solution for the copying process, I already solved the copying part (kind of) by modifying the code so that it suits my needs.
What is asked for?
A way to know the process of copying, moving or deleting one file. If I know this, I can figure the rest of it out.
Thanks