sftp

In a .NET C# program, is it easy to transition from FTP to SFTP?

In a .NET C# program, is it easy to transition from FTP to SFTP? I'm trying to get a sense of how muh time it would take the contractor to make the transition. My personal experience is mostly with PHP, so I have no idea. Basically, what I'm talking about, what steps would have to be made? Obviously, different commands, but would anythi...

What's the best free scriptable SFTP client for windows?

What's the best free scriptable SFTP client for windows? I've looked at WinSCP and Filezilla. Winscp seems quite buggy (click here), and filezilla doesn't seem very scriptable. Any suggestions? Basically what i want to do is: from a scheduled task, log onto a remote server, pull any files across, and then delete them from the remote s...

automate sftp upload process

I'm looking for a way to upload files/dirs structure from one server to another.. The only way it's possible in my case is SFTP upload, is there any easy way to upload it, using script or something without making archive of files/dirs, I want to recreate on remote server? Thank you! ...

Supress or Ignore Non-Trusted Certificate With FTPS.exe (MoveIT Freely)?

One of the FTP accounts that I use recently began requiring secure FTP connections, which broke a script that I used to upload to it using a 'standard' FTP library. I've written a little batch file that will upload the 2 files via FTPS.exe (MoveIT Freely), but I get a dialog box that pops up and requires me to click yes. Normally this ...

Why does this python code hang on import/compile but work in the shell?

I'm trying to use python to sftp a file, and the code works great in the interactive shell -- even pasting it in all at once. When I try to import the file (just to compile it), the code hangs with no exceptions or obvious errors. How do I get the code to compile, or does someone have working code that accomplishes sftp by some othe...

Automatic file upload

Is there any way, any free software capable of automatic file upload? Let's say I edit php code on my local computer with my favorite IDE. I won't change my IDE, it's great. I want something that would detect a file is changed in my project directory and upload it with FTP/SFTP onto remote server. That's it - just that simple. What I've...

What is going to overtake FTP and why aren't we using it yet?

Is it just me, or does FTP seem a little archaic? It seems slow and inefficient, and its over 30 years old, not that all old things are bad :) What protocols exist out there that might become successors to FTP? I've used webdav a little, but don't know much about it. Is it faster? More reliable? More secure? Why isn't there widesp...

Deleting files via SFTP

Are there any C# open-source components that allow me to delete files via SFTP? ...

VSFTPD on windows and other issue.

I have to build an vsftpd compatible ftp client. I am not sure about which protocol vsftpd follows, sftp or ftps, I am guessing sftp as i could connect some vsftpd client with port 21(ftp) and 22(sftp) but not 990(ftps). Now I have to communicate with vsftpd compatible ftp server using C#.NET. Can somebody help me find out some good ope...

Resolving a remote $HOME directory via FTP/SFTP.

In Objective-C, NSString has a method called stringByExpandingTildeInPath This method will take a string like "~/Documents" and resolve it to "/Users/Nick/Documents". The "~" tilde is resolved to the home directory of the current user of the machine the program is running on. Now my question is this... I am writing a little FTP/SFTP ...

Handling very large SFTP uploads - Cocoa

Hello everyone, I'm working on a small free Cocoa app that involves some SFTP functionality, specifically working with uploads. The app is nearing completion however I've run into a pretty bad issue with regards to uploading folders that contain a lot of files. I'm using ConnectionKit to handle the uploads: CKTransferRecord * record;...

Are there ways of doing opendir(), readdir() type of calls through SSH/SFTP?

I have a bit of code that reads a directory for files to process. I currently use the dirent.h,opendir(),readdir() methods of doing this. I have been told that I need to do the same thing, only now it is a directory on a remote machine with SSH/SFTP access. The only way (that I can think of) to do the same thing, without changing anyth...

Are there any good Ruby FTP libraries for Ubuntu?

After spending some time on Google all that I've found so far is ChilKat which only runs on Windows. I'm looking for something similar that'll run on Ubuntu. Obviously there's NET::FTP, Net::SSH and Net::SFTP so I could roll my own and that may be what I'll do, but I'm hoping to save a lot of time by using something else that's already b...

FTP GUI client for Unix-like platform capable of TLS/SSL/SFTP

I know similar questions were already asked and answered, but not exactly the same. I'm looking for a FTP client that can do TLS/SSL connection and SFTP aswell on Linux with a nice GUI. This is main requirement, though tabbed session are a plus. FTPRush is my idol for FTP-ing on Windows, something similar on linux would be a rockstar. ...

how to use FTP SSL c#

By using following code, My client application is connecting to the Secured FTP Server and pushing file up there successfully. Do you think the following approach is still leaving the security hole by accepting all the certificates. If so, can anybody help me out to pass the specific certificate from client i have on FTP server. Servi...

How to verify SFTP access

How can we verify that SFTP access has been granted on a server - without installing any software/tools? Thank you in advance Mark ...

using .netrc with sftp

I've some existing scripts wherein am using ftp + .netrc. I want to switch to sftp now but it seems it doesn't support macros / .netrc. Is there any other alternative? Please help. ...

Linux sftp Renaming during file transfer

Hi, I just want to confirm something I noticed when downloading a file through sftp on linux. I renamed the file (mv file.tar.gz newfile.tar.gz) during the transfer (usually would wait to transfer was complete) and the download kept going. Im I right to be amazed? How did this happen, and surely you cant do this on windows. --Mark ...

OSX Equivalent of WinSCP's Fully-Automated Local-Remote SFTP Sync?

Hello, I fondly remember working with WinSCP and using the fully automated local-to-remote syncing functionality, where the app would monitor a directory hierarchy and send changes to the remote server as they happened. Is there an app available on OSX that accomplishes the same thing? I haven't really been able to find anything. When I...

Functionality of a web application to handle user's request to download files from SFTP Server

In our Java web application, customer wants to upload some large files to a SFTP server and download directly from there. The customers do not want to use any third party tool rather they want this functionality in the application itself. The file upload part has been taken care of by the JFileUpload applet component & libraries. Once t...