Re: Upload Validation with Access VBA
You can use the
https://winscp.net/eng/docs/logging_xml
More hackish approach would be to just redirect
The most reliable approach is using the the WinSCP .NET assembly and its
https://winscp.net/eng/docs/library_vb
On the other hand, this requires registration of the assembly, what complicates distribution of the code (if that's required).
ls
command and XML logging and parse the XML log.
https://winscp.net/eng/docs/logging_xml
More hackish approach would be to just redirect
winscp.com
output (with the ls
output) to a text file and parse that.
The most reliable approach is using the the WinSCP .NET assembly and its
Session.ListDirectory
method from VBA.
https://winscp.net/eng/docs/library_vb
On the other hand, this requires registration of the assembly, what complicates distribution of the code (if that's required).