WinSCP delete source files in specific folders older than certain date, after successful Synchronization of...












1















I have a batch file that Synchronizes a certain folder using WinSCP.



"C:Program Files (x86)WinSCPWinSCP.com" ^
/log="C:ScriptsLogs- Server Data - Backup !M-!D-!Y.log" ^
/command ^
"open ""sftp://xxx/Archive/Server Data/"" " ^
"synchronize remote ""C:xxx- Server Data -"" " ^
"exit"


The point behind it is to archive data to a Synology NAS SFTP server. It works well.



I also want to delete files in specific sub-directories of the source that are over a certain date, for example 30 days, but I want to be absolutely sure that they've successfully been archived to the SFTP server.



I have a batch file that deletes log files over 30 days old, but I don't think it's a safe way to delete important files. The Synchronization could hypothetically stop working for 30 days without me noticing and then I'd be screwed, for example.



ForFiles /p "C:ScriptsLogs" /s /d -30 /c "cmd /c del @file"


Also, it would be nice if the specified sub-directories could be easily editable so that I can simply add on or remove from a list. So some kind of loop I assume would be good.



What's the best way to do this?










share|improve this question



























    1















    I have a batch file that Synchronizes a certain folder using WinSCP.



    "C:Program Files (x86)WinSCPWinSCP.com" ^
    /log="C:ScriptsLogs- Server Data - Backup !M-!D-!Y.log" ^
    /command ^
    "open ""sftp://xxx/Archive/Server Data/"" " ^
    "synchronize remote ""C:xxx- Server Data -"" " ^
    "exit"


    The point behind it is to archive data to a Synology NAS SFTP server. It works well.



    I also want to delete files in specific sub-directories of the source that are over a certain date, for example 30 days, but I want to be absolutely sure that they've successfully been archived to the SFTP server.



    I have a batch file that deletes log files over 30 days old, but I don't think it's a safe way to delete important files. The Synchronization could hypothetically stop working for 30 days without me noticing and then I'd be screwed, for example.



    ForFiles /p "C:ScriptsLogs" /s /d -30 /c "cmd /c del @file"


    Also, it would be nice if the specified sub-directories could be easily editable so that I can simply add on or remove from a list. So some kind of loop I assume would be good.



    What's the best way to do this?










    share|improve this question

























      1












      1








      1


      1






      I have a batch file that Synchronizes a certain folder using WinSCP.



      "C:Program Files (x86)WinSCPWinSCP.com" ^
      /log="C:ScriptsLogs- Server Data - Backup !M-!D-!Y.log" ^
      /command ^
      "open ""sftp://xxx/Archive/Server Data/"" " ^
      "synchronize remote ""C:xxx- Server Data -"" " ^
      "exit"


      The point behind it is to archive data to a Synology NAS SFTP server. It works well.



      I also want to delete files in specific sub-directories of the source that are over a certain date, for example 30 days, but I want to be absolutely sure that they've successfully been archived to the SFTP server.



      I have a batch file that deletes log files over 30 days old, but I don't think it's a safe way to delete important files. The Synchronization could hypothetically stop working for 30 days without me noticing and then I'd be screwed, for example.



      ForFiles /p "C:ScriptsLogs" /s /d -30 /c "cmd /c del @file"


      Also, it would be nice if the specified sub-directories could be easily editable so that I can simply add on or remove from a list. So some kind of loop I assume would be good.



      What's the best way to do this?










      share|improve this question














      I have a batch file that Synchronizes a certain folder using WinSCP.



      "C:Program Files (x86)WinSCPWinSCP.com" ^
      /log="C:ScriptsLogs- Server Data - Backup !M-!D-!Y.log" ^
      /command ^
      "open ""sftp://xxx/Archive/Server Data/"" " ^
      "synchronize remote ""C:xxx- Server Data -"" " ^
      "exit"


      The point behind it is to archive data to a Synology NAS SFTP server. It works well.



      I also want to delete files in specific sub-directories of the source that are over a certain date, for example 30 days, but I want to be absolutely sure that they've successfully been archived to the SFTP server.



      I have a batch file that deletes log files over 30 days old, but I don't think it's a safe way to delete important files. The Synchronization could hypothetically stop working for 30 days without me noticing and then I'd be screwed, for example.



      ForFiles /p "C:ScriptsLogs" /s /d -30 /c "cmd /c del @file"


      Also, it would be nice if the specified sub-directories could be easily editable so that I can simply add on or remove from a list. So some kind of loop I assume would be good.



      What's the best way to do this?







      batch-file sftp winscp






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 2 at 11:31









      Tristan KingTristan King

      346




      346
























          1 Answer
          1






          active

          oldest

          votes


















          1














          You can test WinSCP exit code, to see if the synchronization succeeded, before you start deleting the files:



          "C:Program Files (x86)WinSCPWinSCP.com" ^
          /log="C:ScriptsLogs- Server Data - Backup !M-!D-!Y.log" ^
          /command ^
          "open ""sftp://xxx/Archive/Server Data/"" " ^
          "synchronize remote ""C:xxx- Server Data -"" " ^
          "exit"

          if not errrolevel 1 (
          ForFiles /p "C:ScriptsLogs" /s /d -30 /c "cmd /c del @file"
          )


          See WinSCP FAQ How do I know that script completed successfully?





          For a more robust solution, you should use a more powerful language, like PowerShell combined with WinSCP .NET assembly.



          You can start with this example, which has all the key pieces you need (iterating local files, and checking if they exist remotely):
          Recursively move files in directory tree to SFTP server while preserving source directory structure.






          share|improve this answer
























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005562%2fwinscp-delete-source-files-in-specific-folders-older-than-certain-date-after-su%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            You can test WinSCP exit code, to see if the synchronization succeeded, before you start deleting the files:



            "C:Program Files (x86)WinSCPWinSCP.com" ^
            /log="C:ScriptsLogs- Server Data - Backup !M-!D-!Y.log" ^
            /command ^
            "open ""sftp://xxx/Archive/Server Data/"" " ^
            "synchronize remote ""C:xxx- Server Data -"" " ^
            "exit"

            if not errrolevel 1 (
            ForFiles /p "C:ScriptsLogs" /s /d -30 /c "cmd /c del @file"
            )


            See WinSCP FAQ How do I know that script completed successfully?





            For a more robust solution, you should use a more powerful language, like PowerShell combined with WinSCP .NET assembly.



            You can start with this example, which has all the key pieces you need (iterating local files, and checking if they exist remotely):
            Recursively move files in directory tree to SFTP server while preserving source directory structure.






            share|improve this answer




























              1














              You can test WinSCP exit code, to see if the synchronization succeeded, before you start deleting the files:



              "C:Program Files (x86)WinSCPWinSCP.com" ^
              /log="C:ScriptsLogs- Server Data - Backup !M-!D-!Y.log" ^
              /command ^
              "open ""sftp://xxx/Archive/Server Data/"" " ^
              "synchronize remote ""C:xxx- Server Data -"" " ^
              "exit"

              if not errrolevel 1 (
              ForFiles /p "C:ScriptsLogs" /s /d -30 /c "cmd /c del @file"
              )


              See WinSCP FAQ How do I know that script completed successfully?





              For a more robust solution, you should use a more powerful language, like PowerShell combined with WinSCP .NET assembly.



              You can start with this example, which has all the key pieces you need (iterating local files, and checking if they exist remotely):
              Recursively move files in directory tree to SFTP server while preserving source directory structure.






              share|improve this answer


























                1












                1








                1







                You can test WinSCP exit code, to see if the synchronization succeeded, before you start deleting the files:



                "C:Program Files (x86)WinSCPWinSCP.com" ^
                /log="C:ScriptsLogs- Server Data - Backup !M-!D-!Y.log" ^
                /command ^
                "open ""sftp://xxx/Archive/Server Data/"" " ^
                "synchronize remote ""C:xxx- Server Data -"" " ^
                "exit"

                if not errrolevel 1 (
                ForFiles /p "C:ScriptsLogs" /s /d -30 /c "cmd /c del @file"
                )


                See WinSCP FAQ How do I know that script completed successfully?





                For a more robust solution, you should use a more powerful language, like PowerShell combined with WinSCP .NET assembly.



                You can start with this example, which has all the key pieces you need (iterating local files, and checking if they exist remotely):
                Recursively move files in directory tree to SFTP server while preserving source directory structure.






                share|improve this answer













                You can test WinSCP exit code, to see if the synchronization succeeded, before you start deleting the files:



                "C:Program Files (x86)WinSCPWinSCP.com" ^
                /log="C:ScriptsLogs- Server Data - Backup !M-!D-!Y.log" ^
                /command ^
                "open ""sftp://xxx/Archive/Server Data/"" " ^
                "synchronize remote ""C:xxx- Server Data -"" " ^
                "exit"

                if not errrolevel 1 (
                ForFiles /p "C:ScriptsLogs" /s /d -30 /c "cmd /c del @file"
                )


                See WinSCP FAQ How do I know that script completed successfully?





                For a more robust solution, you should use a more powerful language, like PowerShell combined with WinSCP .NET assembly.



                You can start with this example, which has all the key pieces you need (iterating local files, and checking if they exist remotely):
                Recursively move files in directory tree to SFTP server while preserving source directory structure.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 2 at 21:04









                Martin PrikrylMartin Prikryl

                91.1k22180385




                91.1k22180385
































                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005562%2fwinscp-delete-source-files-in-specific-folders-older-than-certain-date-after-su%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    MongoDB - Not Authorized To Execute Command

                    How to fix TextFormField cause rebuild widget in Flutter

                    in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith