c++ - How to move files in Qt? -
is there cross-platform function in qt equivalent movefile function in windows , mv command in linux?
sure, qdir::rename()
following old unix / posix tradition of calling rename.
which makes sense if think of file complete path: underlying inodes just assigned different path/file label.
Comments
Post a Comment