Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Call for Presentations - Qt World Summit

    Unsolved Automatically upload data on server from selected directory path

    General and Desktop
    4
    17
    3567
    Loading More Posts
    • 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.
    • D
      developerNancy last edited by developerNancy

      I have developed linux app to upload data on server from selected folder on button click and saving that data in sent folder Now I want to upload data automatically when there is any files in folder.

      If any one knows how to upload data automatically if user select an directory only one time then please let me know?

      K 1 Reply Last reply Reply Quote 0
      • K
        koahnig @developerNancy last edited by

        @developerNancy

        You can find out if there are files in a folder with QDir::entryInfoList with filter QDir::Files

        Vote the answer(s) that helped you to solve your issue(s)

        D 1 Reply Last reply Reply Quote 0
        • D
          developerNancy @koahnig last edited by

          @koahnig I have done with uploading on button click but Now I want to upload automatically when new file added in that folder.

          J.Hilk K 2 Replies Last reply Reply Quote 0
          • J.Hilk
            J.Hilk Moderators @developerNancy last edited by

            @developerNancy Than you'll have to save a reference of the QDir::entryInfoList in a member variable and periotically call QDir::entryInfoList to compare with your member variable List.

            If the latest call contains a file not in your m-Varibale, update your list and upload the new file.

            Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct

            Qt Needs YOUR vote: https://bugreports.qt.io/browse/QTQAINFRA-4121


            Q: What's that?
            A: It's blue light.
            Q: What does it do?
            A: It turns blue.

            D 1 Reply Last reply Reply Quote 0
            • K
              koahnig @developerNancy last edited by

              @developerNancy

              There is also the QFileSystemWatcher which tells you when there is a change.

              Vote the answer(s) that helped you to solve your issue(s)

              D 1 Reply Last reply Reply Quote 3
              • D
                developerNancy @koahnig last edited by

                @koahnig I have done with that My main query is to upload automatically

                1 Reply Last reply Reply Quote 0
                • D
                  developerNancy @J.Hilk last edited by

                  @J.Hilk After getting new file How to send it to server automatically?

                  K J.Hilk jsulm 3 Replies Last reply Reply Quote 0
                  • K
                    koahnig @developerNancy last edited by

                    @developerNancy said in Automatically upload data on server from selected directory path:

                    @J.Hilk After getting new file How to send it to server automatically?

                    @koahnig said in Automatically upload data on server from selected directory path:

                    @developerNancy

                    There is also the QFileSystemWatcher which tells you when there is a change.

                    Follow the link given in the post above.

                    Vote the answer(s) that helped you to solve your issue(s)

                    1 Reply Last reply Reply Quote 0
                    • J.Hilk
                      J.Hilk Moderators @developerNancy last edited by J.Hilk

                      @developerNancy

                      I didn't knwo QFileSystemWatcher was a thing so I'll use that.

                      //*.h
                      #include <QFileSystemWatcher>
                      ...
                      
                      private slots:
                         void uploadViaQNetworkManager(QString filePath){//Your upload code;}
                      
                         void watcherSlot(QString s);
                      
                      private:
                          QFileSystemWatcher watcher; 
                          QList<QString> m_refList;
                      
                      //*.cpp
                      watcher.addPath(PathToUploadFolder);
                      QDir dir; 
                      dir.setPath(PathToUploadFolder);
                      if(!dir.entryList(QDir::Files).isEmpty())
                              for(auto &str :dir.entryList(QDir::Files | QDir::NoDotAndDotDot)){
                                  m_refList.append( str);
                      
                      connect(&watcher, &QFileSystemWatcher::directoryChanged, this, &myClass::watcherSlot);
                      
                      void myClass::watcherSlot(QString s){
                         QString newfile;
                         QDir dir; 
                         dir.setPath(s);
                         if(!dir.entryList(QDir::Files).isEmpty())
                             for(int i = 0; i < m_refList.size(); i++){
                                 bool newEntry = true;;
                                 for(newfile : dir.entryList(QDir::Files | QDir::NoDotAndDotDot)){
                                     if(m_refList.at(i) == newfile)
                                        newEntry = false;
                                  if(newEntry){
                                     uploadViaQNetworkManager(s+"\n"+newfile);
                                     m_refList.append(newfile);
                                   }
                              }
                      }
                      

                      Disclaimer this is pseudo code and untested. But the prinziple should be valid

                      Edit: changed the filter from dirs to files.

                      Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct

                      Qt Needs YOUR vote: https://bugreports.qt.io/browse/QTQAINFRA-4121


                      Q: What's that?
                      A: It's blue light.
                      Q: What does it do?
                      A: It turns blue.

                      D 1 Reply Last reply Reply Quote 0
                      • jsulm
                        jsulm Lifetime Qt Champion @developerNancy last edited by

                        @developerNancy said in Automatically upload data on server from selected directory path:

                        After getting new file How to send it to server automatically?

                        Didn't you say in your first post that you already implemented uploading to the server?

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

                        D 1 Reply Last reply Reply Quote 0
                        • D
                          developerNancy @jsulm last edited by

                          @jsulm Yes I have done with Uploading Multiple files to server Now I want to implement background sync. like if any file copy in selected folder than it automatically uploaded to server. For this watcher or threading which is the best solution.....

                          jsulm 1 Reply Last reply Reply Quote 0
                          • jsulm
                            jsulm Lifetime Qt Champion @developerNancy last edited by

                            @developerNancy That I understand. What I don't understand: if you're able to upload multiple files why can't you upload one? So, what exactly is the problem?

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

                            D 1 Reply Last reply Reply Quote 0
                            • D
                              developerNancy @jsulm last edited by

                              @jsulm I want to sync data in background it automatically uploaded when new file is added in directory no need to click again upload button.

                              jsulm 1 Reply Last reply Reply Quote 0
                              • jsulm
                                jsulm Lifetime Qt Champion @developerNancy last edited by

                                @developerNancy That I understand. You already was pointed to QFileSystemWatcher, @J-Hilk even provided code. So, what is not working?

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

                                D 1 Reply Last reply Reply Quote 0
                                • D
                                  developerNancy @jsulm last edited by

                                  @jsulm which is the best approach for background sync I am Implementing thread ...

                                  1 Reply Last reply Reply Quote 0
                                  • D
                                    developerNancy @J.Hilk last edited by

                                    @J.Hilk Can you please explain How I get the Path and watcher active after button click.

                                    J.Hilk 1 Reply Last reply Reply Quote 0
                                    • J.Hilk
                                      J.Hilk Moderators @developerNancy last edited by

                                      @developerNancy you don't share any code sample with us, so it's hard to give definite working answers. You'll have to take what we write and integrate into your project.

                                      That said I gave you a rough example how to setup and use the watcher.

                                      @J.Hilk said in Automatically upload data on server from selected directory path:

                                      @developerNancy

                                      //*.h
                                      QFileSystemWatcher watcher;
                                      
                                      //*.cpp
                                      watcher.addPath(PathToUploadFolder);
                                      QDir dir; 
                                      dir.setPath(PathToUploadFolder);
                                      if(!dir.entryList(QDir::Files).isEmpty())
                                              for(auto &str :dir.entryList(QDir::Files | QDir::NoDotAndDotDot)){
                                                  m_refList.append( str);
                                      
                                      connect(&watcher, &QFileSystemWatcher::directoryChanged, this, &myClass::watcherSlot);
                                      

                                      @developerNancy said in Automatically upload data on server from selected directory path:

                                      How I get the Path

                                      I don't know! How do you specify the folder for the multi file upload to the server? Just copy that path to a Qstring and give it to your QFileSystemWatcher-Instance

                                      Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct

                                      Qt Needs YOUR vote: https://bugreports.qt.io/browse/QTQAINFRA-4121


                                      Q: What's that?
                                      A: It's blue light.
                                      Q: What does it do?
                                      A: It turns blue.

                                      1 Reply Last reply Reply Quote 0
                                      • First post
                                        Last post