Re: How to chdir using SFTP or SSH on Win32

2008-05-21 Thread Rob Dixon
Sturdevant, Robert W Mr CTR USA AMC wrote: > > Yeah, I got all that but unfortunately I need a workaround due to a coding > error on the server end. The server-end SFTP logic is a rewrite of an > earlier FTP app that still expects a CD before the GET. Any ideas? Magic? Are you sure this isn't ord

Re: How to chdir using SFTP or SSH on Win32

2008-05-21 Thread Rob Dixon
Sturdevant, Robert W Mr CTR USA AMC wrote: > > Yeah, I got all that but unfortunately I need a workaround due to a coding > error on the server end. The server-end SFTP logic is a rewrite of an > earlier FTP app that still expects a CD before the GET. Any ideas? Magic? There is no cd command in S

RE: How to chdir using SFTP or SSH on Win32

2008-05-21 Thread Sturdevant, Robert W Mr CTR USA AMC
:[EMAIL PROTECTED] Sent: Wednesday, May 21, 2008 12:15 PM To: beginners@perl.org Cc: Sturdevant, Robert W Mr CTR USA AMC Subject: Re: How to chdir using SFTP or SSH on Win32 Sturdevant, Robert W Mr CTR USA AMC wrote: > Hi list, > > I asked this question a few days ago on the perl-win32-u

Re: How to chdir using SFTP or SSH on Win32

2008-05-21 Thread Rob Dixon
Sturdevant, Robert W Mr CTR USA AMC wrote: > Hi list, > > I asked this question a few days ago on the perl-win32-users list but > still need some help. It seems what I need may not be possible. > > I have a perl (5.6) SFTP client (Net::SFTP) that gets and puts files > using either a full or relat

Re: How to chdir using SFTP or SSH on Win32

2008-05-21 Thread Steve Bertrand
$sftp->chdir( $path ); #cd to the OUT folder $sftp->get( $shortname, $localname); # get the file using only the file name I see no way to do $sftp->chdir. Will $sftp->do_opendir() work? Steve -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

How to chdir using SFTP or SSH on Win32

2008-05-21 Thread Sturdevant, Robert W Mr CTR USA AMC
Hi list, I asked this question a few days ago on the perl-win32-users list but still need some help. It seems what I need may not be possible. I have a perl (5.6) SFTP client (Net::SFTP) that gets and puts files using either a full or relative path with the filename something like this: $sftp->g