How to move files in Qt?

22,151

Solution 1

Sure, QDir::rename() following the old Unix / POSIX tradition of calling this rename.

Which makes sense if you think of a file with its complete path: the underlying inodes just get assigned a different path/file label.

Solution 2

You would use QDir::rename() but be beware of the special cases when rename() can fail:

On most file systems, rename() fails only if oldName does not exist, if newName and oldName are not on the same partition or if a file with the new name already exists. However, there are also other reasons why rename() can fail. For example, on at least one file system rename() fails if newName points to an open file.

Share:
22,151
sashoalm
Author by

sashoalm

Updated on March 25, 2020

Comments

  • sashoalm
    sashoalm almost 3 years

    Is there a cross-platform function in Qt that is equivalent to the MoveFile function in Windows and the mv command in Linux?