I want to copy a directory from one drive to another drive. My selected directory contains many sub directories and files.
How can I implement the same using Qt?
The hard way. Copy every file individually.
QDir::entryList()
QDir::cd()
QDir::cdUp()
QDir::mkdir()
QDir::mkpath()
QFile::copy()