Thanks for the reply!
Really appreciate it
Really appreciate it
'open ftp://user:banana%4072@host'
-password
switch:
'open -password=banana@72 ftp://user@host'
process = subprocess.Popen(
[r'path\WinSCP.com', '/ini=nul', '/command',
'open ftp://user:password@host', 'get something.txt', 'exit'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
for line in iter(process.stdout.readline, b''):
print(line.decode().rstrip())
banana@72