Winscp archive files after uploading

spider1269
Member Posts: 77
I'm wondering how everyone is archiving their files with Winscp after uploading them to a SFTP site. I have everything working except I'm archiving the entire contents of a folder after the files in the folder are uploaded. The issue is the folder is actively having files inserted and I may archive a file before it gets uploaded.
0
Answers
-
archive each file after you have uploaded it.0
-
I'm not sure how to do that in Winscp. Every function seems to be folder driven.0
-
spider1269 wrote: »I'm not sure how to do that in Winscp. Every function seems to be folder driven.
Certainly not. I usePROCEDURE SendFile(SourceFileName: Text;DestinationFileName: Text;Overwrite: Boolean); VAR transferOptions: DotNet "'WinSCPnet, Version=1.7.0.9963, Culture=neutral, PublicKeyToken=2271ec4a3c56d0bf'.WinSCP.TransferOptions"; transferMode: DotNet "'WinSCPnet, Version=1.7.0.9963, Culture=neutral, PublicKeyToken=2271ec4a3c56d0bf'.WinSCP.TransferMode"; transferOperationResult: DotNet "'WinSCPnet, Version=1.7.0.9963, Culture=neutral, PublicKeyToken=2271ec4a3c56d0bf'.WinSCP.TransferOperationResult"; overwriteMode: DotNet "'WinSCPnet, Version=1.7.0.9963, Culture=neutral, PublicKeyToken=2271ec4a3c56d0bf'.WinSCP.OverwriteMode"; BEGIN transferOptions := transferOptions.TransferOptions; transferOptions.PreserveTimestamp := TRUE; transferOptions.TransferMode := transferMode.Binary; transferOptions.OverwriteMode := overwriteMode.Overwrite; // Overwrite is default. There is no option to throw an error. This code assumes, the existence of a file has been checked if Overwrite is FALSE transferOperationResult := WinSCPSession.PutFiles(SourceFileName,DestinationFileName,FALSE,transferOptions); transferOperationResult.Check; END;
The filename parameters include absolute or relative paths as needed, formatted according to the file system they belong to.0 -
Thank you. I remember seeing this on the WinSCP site a while ago, but I didn't think it would work. I'll take another look at it since I now am able to use known file names.0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions