Hi,

I need a file system utility with more functions than QDir,especially functionality similiar to rm and mv in Linux coreutils package.
The utility should be portable on all platform Qt supports,and should be C++ class or functions to be used directly(I don't want to use an external program in QProcess,such as a utility like Unix shell).
The mv function seems a little hard to implement by QDir,and to be robust,even rm needs some work(i need the -f -r etc switch functions to work).
Do you have ever written such an utility?And if so,will you share with me?