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? ...
How to identify whether the item of a directory is a file or a directory using Net::SFTP or ruby code? ...
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 ...
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...
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. ...
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? ...
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. ...
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? ...
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? ...