16

I have set a file to be read-only (right click and check readonly). Now when I try to remove the file using the function bool QDir::remove(const QString & fileName) the file is not removed and false is returned.
How do I proceed with this? I have tried fiddling around by changing the permission of the file using QFile::setPermission, but that returns false too.
Can anybody advise an approach for the same?

gpalex
  • 826
  • 1
  • 11
  • 27
Eternal Learner
  • 3,800
  • 13
  • 48
  • 78
  • Read section "Platform specific issues" in documentation to `QFile` class. It tells you that the usability of `setPermissions()` on Windows is somewhat limited. To me, it however seems that your problem is that your file is locked because it is in use (by other pending instances of your app or by other program). Therefore you cannot change the permissions. Try using `QFile::error()` to get more info. If that does not help, you can always try to use directly WinAPI. – HiFile.app - best file manager Mar 29 '19 at 11:00

6 Answers6

20
file.setPermissions(QFile::ReadOther | QFile::WriteOther);
file.remove();

should work.

charango
  • 311
  • 2
  • 6
1

You can set file permissions with QFile

Of course this only for files you have user permission to do. The error may also be because the file is open in another app

Martin Beckett
  • 94,801
  • 28
  • 188
  • 263
1

First, have you checked QFile::error() to see why the file wasn't removed?

Second, in the event that you're still not getting a useful error message back, you could check the source to find out if you can get more information. Checking the source reveals the following, for example:

QFile::remove() uses the underlying file engine to do the removal. That file engine is platform specific and in qfsfileengine_win.cpp for windows. Line 830 shows that it's using DeleteFile to do the removal so you might be able to get more information by calling GetLastError, though I'd hope that Qt translates the error message appropriately.

Kaleb Pederson
  • 45,767
  • 19
  • 102
  • 147
  • This does not answer the question at all. He is specifically asking about removing Read Only files which always fails with Qfile::remove(). – cen Nov 25 '13 at 19:40
-2

I think you should use this:

bool QFile::remove ( const QString & fileName ) [static]

instead of this:

QDir::remove ( const QString & fileName ) 
Kishan_KP
  • 4,488
  • 6
  • 27
  • 46
lxj
  • 1
-2

QDir::remove() function is not a static function. so you can create QDir with parent file path and call then remove it:

QDir dir(parent's directory);

and then

dir.remove(fileName);

Anglejoy
  • 63
  • 1
  • 8
-3

Have you tried to use bool QFile::remove(const QString &fileName)?

superpanda
  • 21
  • 4