Hi!

I am trying to move a file using QFile::rename() but the results are more like a copy operation. The file gets copied to the new file name, but it still seems to exist at the old file name as well. I have also tried QDir::rename with the same result.

Calling QFile:: exists shows that the original file exists, but using QFile::remove to delete the original file fails with an error code of QFile::NoError. You can delete the file manually.

Using QFileInfo:: permission, it looks like the owner, user, and others groups have write permission to the file.

We build our application for both linux and windows, and under Linux the above scenario works as you would expect, and the file is moved from one name to another.

Has anyone else run into this?

Thanks,
Jesse