Re: Receiving non-lvalue error when trying to set SessionLogPath in Perl
I do not know much about Perl, but our Perl documentation shows that a syntax for setting properties is like:
See Using WinSCP .NET Assembly from Perl (ActivePerl).
Also the
So it should be like:
$sessionOptions->{'SessionLogPath'} = ...;
See Using WinSCP .NET Assembly from Perl (ActivePerl).
Also the
SessionOptions.SessionLogPath takes a path to a file, not to a folder.
So it should be like:
$sessionOptions->{'SessionLogPath'} = "D:/SCP_Workflow_Logs/session.log";