net-sftp

How can I identify if an item is a file or a directory using Net::SFTP?

How to identify whether the item of a directory is a file or a directory using Net::SFTP or ruby code? ...

Any opensource library for accessing SFTP & VPN Tunnel - FTP using C#

HiI need to access the files available in sftp using SFTP in my project (C#).Are there any opensource C# libraries for accessing file available on SFTP folder which can be used in my project? Thanks nrk ...

FTP/SFTP Server thats scriptable

Hi I am looking for a windows FTP/SFTP server software that I can administrate (partly) by scripting against it, or if it has a .NET or COM API but at the end of the day I need to execute scripts/tasks against it that adds accounts and such. I have considered building my own c# implementation but it seems unneccecary to do that by my se...

Is there any way to get the date modified from Net::SSH or NET::SFTP commands in ruby?

Hi there, Is there an easy way to get the date modified of a file by using Net::SFTP? It'd be nice to be able to do this: Net::SFTP.start('some_server') do |sftp| sftp.dir.glob('*').each do |file| puts file.mtime end end But that's not possible (to my knowledge). Berns. ...

SFTP with .net 3.5?

I need to connect to sftp server to download & upload file using C# in .net 3.5. Is Microsoft/.net 3.5 framework providing any inbuilt tools/mechanism/library to connect to sftp server to download & upload files? ...

What is the best way to send/receive a file to a SFTP server in .NET?

I am looking to connect to a SFTP server and both push and pull a file. Initial searches didn't turn up any straightforward "built in" support in .NET, so I may have to buy a third-party library. For authentication, I want to use Public Key Authentication to avoid having to manage periodic password resets, too. ...

How to avoid "Unable to establish loopback connection" with JRuby and net-sftp gem

It seems that JRuby cannot handle several file uploads using the net-sftp gem. After successfully uploading several files I get the following exception: IOError : Unable to establish loopback connection The same code and gem under MRI Ruby works fine. Any suggestions? ...

unix utility that reads files into memory?

I am using Ruby's net-ssh library to remotely execute shell commands. I would like to read a few files into memory rather than simply transfer them via SCP/SFTP. Can can I do this? ...