Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Cannot rename by QFile::rename
Qt 6.11 is out! See what's new in the release blog

Cannot rename by QFile::rename

Scheduled Pinned Locked Moved Solved General and Desktop
15 Posts 7 Posters 10.9k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • thamT Offline
    thamT Offline
    tham
    wrote on last edited by
    #1

    Qt : Qt5.6.2, vc2015 64bits
    OS :windows 10 64bits

    I want to rename
    "C:/Users/yyyy/Pictures/QImageScraperDownload/big-2390565c24.pngv%5Cu003d5" , to: "C:/Users/yyyy/Pictures/QImageScraperDownload/big-2390565c24.png" by QFile::rename but it always return false.

    Following is the whole progress

    1 : I download an image by QNetworkAccessManager, write the buffer into QFile, The QFile is part of the struct, which share with shared_ptr
    2 : Before I rename the file, I set the permission as

    bool const permission = task->file_.setPermissions(QFile::WriteOther | QFile::ReadOther);
    qDebug()<<__func__<<":can set permission:"<<permission; //always return true
    

    3 : rename the file

    QFile::rename("C:/Users/yyyy/Pictures/QImageScraperDownload/big-2390565c24.pngv%5Cu003d5",
    "C:/Users/yyyy/Pictures/QImageScraperDownload/big-2390565c24.pngv%5Cu003d5.png");
    

    But it always fail, I have tried

    task->file_.rename("big-2390565c24.pngv%5Cu003d5.png"); //fail
    task->file_.rename("C:/Users/yyyy/Pictures/QImageScraperDownload/big-2390565c24.pngv%5Cu003d5.png"); //fail
    

    I also five QDir a shot, but it is fail either. However, the files can be renamed if I rename them from another exe written by Qt.

    bool const can_rename = QFile::rename("C:/Users/yyyy/Pictures/QImageScraperDownload/Ding-Ding-Mobile-SK3-Pro-Philippines.jpg", "C:/Users/yyyy/Pictures/QImageScraperDownload/Ding-Ding-Mobile-SK3-Pro-Philippines.jpeg");
    qDebug()<<"can rename:"<<can_rename; //success
    

    However, QFile::remove("file_path") sometimes work, sometimes do not work, I even tried to close the QFile manually before rename and remove, but this do not fixed this issue either.

    I have no idea what makes the rename process fail, do anyone have similar experiences?Thanks

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi,

      Are these files in use when you try to change their name ?

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      thamT 1 Reply Last reply
      3
      • thamT Offline
        thamT Offline
        tham
        wrote on last edited by tham
        #3

        Right now I am using some hack to "fixed" this issue, I store the files cannot be renamed and removed, after all of the download progress are finished, I tried to remove those files again, this time almost every files could be renamed and removed. Wonder what happened.

        1 Reply Last reply
        0
        • SGaistS SGaist

          Hi,

          Are these files in use when you try to change their name ?

          thamT Offline
          thamT Offline
          tham
          wrote on last edited by tham
          #4

          @SGaist said in Cannot rename by QFile::rename:

          Hi,

          Are these files in use when you try to change their name ?

          No, I already close the file when download finished, although I am still try to access the fileName by QFile.
          I even tried to replace QFile by std::unique_ptr, delete(reset(nullptr), in this case I store the fileName in QString) it when download finished, but nothing work

          1 Reply Last reply
          0
          • thamT Offline
            thamT Offline
            tham
            wrote on last edited by
            #5

            Try it on mac os, it works perfectly, haven't tried on linux yet, I guess this maybe some sort of bug

            jsulmJ 1 Reply Last reply
            0
            • thamT tham

              Try it on mac os, it works perfectly, haven't tried on linux yet, I guess this maybe some sort of bug

              jsulmJ Offline
              jsulmJ Offline
              jsulm
              Lifetime Qt Champion
              wrote on last edited by jsulm
              #6

              @tham I don't think it's a bug. It sounds more like the file is still in use. Windows blocks renaming/deleting of used/opened files, but MacOS/Linux do not. You should check using https://technet.microsoft.com/en-us/sysinternals/filemon.aspx

              https://forum.qt.io/topic/113070/qt-code-of-conduct

              thamT 1 Reply Last reply
              6
              • EddyE Offline
                EddyE Offline
                Eddy
                wrote on last edited by
                #7

                Also to add to @jsulm , I've had situations on windows, especially win8 and 10 where the user has windows explorer open in the same directory with the preview pane active. That might lock the file also.

                Qt Certified Specialist
                www.edalsolutions.be

                1 Reply Last reply
                6
                • thamT Offline
                  thamT Offline
                  tham
                  wrote on last edited by
                  #8

                  I find out the culprit, it is QImageReader.

                  static size_t num = 0;
                  QImageReader reader(name);
                   reader.setDecideFormatFromContent(true);
                   reader.canRead(); //after calling can read, the file will be locked
                   bool const can_rename = QFile::rename(name, QString("img/sos%1").arg(num++));
                  qDebug()<<"can rename:"<<can_rename;
                  

                  Is this an expected behavior?

                  In case it is a bug, I create a small project to reproduce the issues

                  I create a minimal project to reproduce the situation, place at mega.

                  Things to noticed :

                  1 : copy img_links.txt to your shadow build folder

                  shadow_build
                  --debug
                  --release
                  --img_links.txt

                  2 : Create a folder "img" in shadow build folder

                  shadow_build
                  --debug
                  --release
                  --img

                  1 Reply Last reply
                  0
                  • jsulmJ jsulm

                    @tham I don't think it's a bug. It sounds more like the file is still in use. Windows blocks renaming/deleting of used/opened files, but MacOS/Linux do not. You should check using https://technet.microsoft.com/en-us/sysinternals/filemon.aspx

                    thamT Offline
                    thamT Offline
                    tham
                    wrote on last edited by
                    #9

                    @jsulm said in Cannot rename by QFile::rename:

                    I don't think it's a bug. It sounds more like the file is still in use. Windows blocks renaming/deleting of used/opened files, but MacOS/Linux do not.

                    Thanks, learn new things. Looks like QImageReader blocking the file.

                    jsulmJ 1 Reply Last reply
                    0
                    • thamT tham

                      @jsulm said in Cannot rename by QFile::rename:

                      I don't think it's a bug. It sounds more like the file is still in use. Windows blocks renaming/deleting of used/opened files, but MacOS/Linux do not.

                      Thanks, learn new things. Looks like QImageReader blocking the file.

                      jsulmJ Offline
                      jsulmJ Offline
                      jsulm
                      Lifetime Qt Champion
                      wrote on last edited by
                      #10

                      @tham That could be actually a bug in QImageReader.
                      canRead() should just check whether the image can be read and close it if it was opened to check.

                      https://forum.qt.io/topic/113070/qt-code-of-conduct

                      1 Reply Last reply
                      1
                      • SGaistS Offline
                        SGaistS Offline
                        SGaist
                        Lifetime Qt Champion
                        wrote on last edited by
                        #11

                        The internals are a bit more complex than that.

                        I'd move the QImageReader code in its own scope so it gets destroyed when not needed anymore and then you can go on move your files around.

                        Interested in AI ? www.idiap.ch
                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                        thamT E 2 Replies Last reply
                        3
                        • SGaistS SGaist

                          The internals are a bit more complex than that.

                          I'd move the QImageReader code in its own scope so it gets destroyed when not needed anymore and then you can go on move your files around.

                          thamT Offline
                          thamT Offline
                          tham
                          wrote on last edited by
                          #12

                          @SGaist said in Cannot rename by QFile::rename:

                          I'd move the QImageReader code in its own scope so it gets destroyed when not needed anymore and then you can go on move your files around.

                          Thanks for the suggestion, I do that already and now it works :)

                          No matter it is a bug or not, I think this api is counter intuitive, if QImageReader would lock the file, it should have a close api or mentioned in the document.

                          However, I open a bug report at jira.

                          1 Reply Last reply
                          2
                          • M Offline
                            M Offline
                            Mishko
                            wrote on last edited by
                            #13

                            I had a something like this problem with file raname after move application from Linux to windows, But I rename file with names which are taked from text file separated by new line. At Linux if have list of names readed from file we must remove only last one symbol ("\n") from string (you cant set file name if at newNamr is cariage move symbol). At windows you must remove TWO symbols from the end of string (new line defined by "\r\n"). May be it will help someone

                            1 Reply Last reply
                            0
                            • SGaistS SGaist

                              The internals are a bit more complex than that.

                              I'd move the QImageReader code in its own scope so it gets destroyed when not needed anymore and then you can go on move your files around.

                              E Offline
                              E Offline
                              efofex
                              wrote on last edited by
                              #14

                              @SGaist I have just had exactly the same issue with QImageWriter. It keeps the file open/locked on Windows after writing. Moving it to it's own scope fixed the issue. I think that the documentation for QImageWriter needs to be updated to indicate this behaviour.

                              1 Reply Last reply
                              0
                              • SGaistS Offline
                                SGaistS Offline
                                SGaist
                                Lifetime Qt Champion
                                wrote on last edited by
                                #15

                                @efofex Patch submitted.

                                Interested in AI ? www.idiap.ch
                                Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                1 Reply Last reply
                                1

                                • Login

                                • Login or register to search.
                                • First post
                                  Last post
                                0
                                • Categories
                                • Recent
                                • Tags
                                • Popular
                                • Users
                                • Groups
                                • Search
                                • Get Qt Extensions
                                • Unsolved