Re: Put Command not working properly for multiple files
Please read the documentation:
https://winscp.net/eng/docs/message_preserve_time_perm
https://winscp.net/eng/docs/message_preserve_time_perm
Please attach a full session log file showing the problem (using the latest version of WinSCP).
To generate the session log file, use/log=path_to_log_file
command-line argument. Submit the log with your post as an attachment. Note that passwords and passphrases not stored in the log. You may want to remove other data you consider sensitive though, such as host names, IP addresses, account names or file names (unless they are relevant to the problem). If you do not want to post the log publicly, you can mark the attachment as private.
/log=path_to_log_file
command-line argument. Submit the log with your post as an attachment. Note that passwords and passphrases not stored in the log. You may want to remove other data you consider sensitive though, such as host names, IP addresses, account names or file names (unless they are relevant to the problem). If you do not want to post the log publicly, you can mark the attachment as private.# WinSCP script to upload files
# Set Options - abort on error, overwrite files
option batch abort
option confirm off
# open the connection ACME (Defined in Sites)
open ACME
# Set binary transfer
option transfer binary
# Transfer file
LCD y:\
put *.ACME
# Elvis has left the building
close
exit