Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

41
votes
12answers
49k views

Java: What is the best way to SFTP a file from a server

What is the best was to retrieve a file from a server using SFTP (as opposed to FTPS) using Java? I'll leave the particular definition of best up to you but in my mind it should include free :)
35
votes
4answers
13k views

SFTP in Python? (platform independent)

I'm working on a simple tool that transfers files to a hard-coded location with the password also hard-coded. I'm a python novice, but thanks to ftplib, it was easy: import ftplib info= ...
20
votes
9answers
8k views

Are there any good free .Net network libraries? (FTP, SFTP, SSH, etc.)

I'm a bit surprised I haven't found a good open source library for performing common network tasks. There are a few very good commercial libraries, but they're too expensive to use on an open source ...
16
votes
7answers
14k views

Differences between SFTP and “FTP over SSH”

While looking for an SFTP client in C# SSH File Transfer Protocol (SFTP), I've come across these two suitable projects - one and two. While trying to understand the basics, I came across this ...
12
votes
1answer
26k views

Is there a public secure FTP site for testing?

I'm working on automating a process that downloads a file from a secure FTP server. I've had problems with the vendor's security certificate and I want to find a clean secure FTP server to test ...
12
votes
8answers
13k views

How do I upload a file to an SFTP server in C# / .NET?

Does this capability come with .Net? If not, what's the best free library? I need something that will throw good exceptions when there is a problem, and allows me to monitor its progress.
9
votes
3answers
2k views

How to use sudo over SFTP with CyberDuck?

I'm copying this question from over here: http://getsatisfaction.com/cyberduck/topics/can_i_use_sudo_over_sftp_with_cyberduck I am having the same issue and finding it hard to find an answer: I ...
8
votes
6answers
2k views

SFTP Libraries for .NET

Can anyone recommend a good SFTP library to use? Right now I'm looking at products such as SecureBlackbox, IPWorks SSH, WodSFTP, and Rebex SFTP. However, I have never used any SFTP library before so ...
8
votes
11answers
3k views

Keep Remote Directory Up-to-date

I absolutely love the Keep Remote Directory Up-to-date feature in Winscp. Unfortunately, I can't find anything as simple to use in OS X or Linux. I know the same thing can theoretically be ...
7
votes
6answers
881 views

SFTP task for msbuild?

Does anyone know of an SFTP task for msbuild? We'd like to automate our deployments to production, but for security reasons we don't allow SMB file-share access from our dev/test/build environment ...
6
votes
2answers
1k views

Streaming a file from SharpSSH

I'm trying to use SharpSSH to get a file from a remote SFTP server, and I want to read it out as a stream. I found: class Sftp, which has a Get method that saves it to a local file -- close class ...
6
votes
2answers
2k views

Connection to secure FTP Server from PHP

This question is in line with this question, I am trying to connect to secure FTP Server and it is not able to connect, wierd part is that I am able to do ssh and connect to the server but when I try ...
6
votes
4answers
9k views

Linux shell to restrict sftp users to their home directories?

I need to give SFTP access to a directory within my webroot on my server. I've set up ben_files as a user and have set his home directory to /var/www/vhosts/mydomain.com/files That's all fine if he ...
6
votes
3answers
3k views

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.
5
votes
3answers
290 views

Netbeans: Deleting files on remote server

I have a PHP project in NetBeans with remote files (over sftp). When I create, modify anything these changes happening both locally and on my web server. However when I'm trying to delete a file or a ...
5
votes
5answers
599 views

is there SFTP Communications in C#? [closed]

Possible Duplicate: SFTP Libraries for .NET is there SFTP Communications in C#?
5
votes
5answers
330 views

Eclipse on Ubuntu: How do I access projects remotely over mounted SFTP connections?

Ubuntu allows you to create and "bookmark" connections to other servers via either Public FTP or SSH. I want to work with projects on a remote server this way. However when I attempt to create a ...
5
votes
6answers
8k views

Best Method to SFTP or FTPS Files via SSIS

This question originally asked which is the best method for uploading files via SFTP or FTPS in SSIS. It now just lists the pros and cons of each solution. I personally use CozyRoc's SFTP library ...
4
votes
1answer
411 views

How do I write a gzipped byte array via SFTP (Jsch) without decompressing it?

(This was x-posted to the Jsch mailing list BTW). I'm reading data from a database and carrying that as a byte[] (for transportation across middleware components). From that byte[] I know how to ...
4
votes
5answers
1k views

Use subprocess to send a password

I'm attempting to use the python subprocess module to log in to a secure ftp site and then grab a file. However I keep getting hung up on just trying to send the password when it is requested. I so ...
4
votes
2answers
4k views

SFTP in android

Hi I want to use SFTP in my android project. Can anybody tell me if android [code]already have SFTP library?? Or i have to implement it. If anybody have already done SFTP client in ...
4
votes
4answers
8k views

SFTP from within PHP

I'm in the process of building an web app that will, besides other things, need to connect to a FTP server to download or upload files. The application is written in PHP and it's hosted on a Linux ...
4
votes
5answers
3k views

Can you have virtual users using an SFTP server?

I've had a FTP server (Mac OS X, but not the server version) set up for a while where the users are virtual, i.e. they are not actual user accounts in the server's OS, but accounts handled by the FTP ...
4
votes
4answers
729 views

ASP, need to use SFTP

This is ASP classic, not .Net. We have to get a way to SFTP into a server to upload and download a couple of files, kicked off by a user. What have other people used to do SFTP in ASP classic? Not ...
3
votes
2answers
74 views

File transfered via SFTP

I have a Linux (openSUSE 10.X) box and have a SFTP service on it. When someone puts a file I have to write a script to move the files to another dir. I do not want to write a cron job. Is there an ...
3
votes
2answers
73 views

Getting error text outof PERL's $sftp->get or do {…}

I'm not a perl programmer but need to debug an error. I'm using the Net:SFTP:Foreign package. When I attempt to get files, the following call fails: $sftp->get(source, destination) or do { print ...
3
votes
1answer
206 views

Any good in memory SFTP servers for Java?

I have some code I need to write a test for that connects to a vendor's SFTP server and puts a file there. Right now the test is connecting to their actual server but I'd rather not do that. Ideally ...
3
votes
2answers
371 views

Perl Net::SSH2 scp_put puts file and then hangs

I'm using Net::SSH2's scp_put method to place one file in my home directory on a Unix server from a Windows box. I am using Strawberry Perl 5.12 (portable version). I installed the libssh2 1.2.5 ...
3
votes
2answers
766 views

twisted conch filetransfer

I am trying to implement a very simple file transfer client in python using twisted conch. The client should simply transfer a few files to a remote ssh/sftp server in a programatic way. The function ...
3
votes
2answers
2k views

Proxy Details with SFTP command

I'm trying to login into the sftp server but its giving me this Connecting to sftp.ABCD.com... /bin/sh: line 1: exec: connect: not found ssh_exchange_identification: Connection closed by remote host ...
3
votes
1answer
1k views

Sharpssh directory listing

I'm writing an application that allows me to up- and download files from a remote server. I'm using sftp as my transfer protocol and i need to list all files and directory's into a listview. I'm using ...
3
votes
6answers
2k views

Java SFTP Server Library?

Hey guys, I've been looking all over for this and can't seem to find anything. Is there any library for Java that can let you easily implement an SFTP server in your application? I'm trying to ...
3
votes
9answers
3k views

FTP/SFTP module for .NET

I am designing an auto downloader using .NET and C#. I was wondering if there is a decent/robust FTP/SFTP module out there that I can use, preferably free of charge. EDIT: I probably should've noted ...
3
votes
3answers
628 views

Threading best practice when using SFTP in C#

Ok, this is more one of these "conceptual questions", but I hope I got some pointers in the right direction. First the desired scenario: I want to query an SFTP server for directory and file lists ...
3
votes
3answers
2k views

How to delete a file from a SFTP server programmingly using SharpSSH?

Anyone knows how to delete a file from a SFTP server using Tamir Gal's SharpSSH? I have been able to accomplish other functionality but deletion. Thanks in advance.
3
votes
1answer
1k views

Setup SFTP to use public-key authentication

How do you setup server to server SFTP to use public-key authentication instead of user account and password?
3
votes
2answers
711 views

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 ...
3
votes
2answers
3k views

SFTP from PHP - undefined constant CURLOPT_PROTOCOLS and CURLPROTO_SFTP?

From my php script, i need to be able to upload a csv file to a remote server via sftp. I followed the accepted answer from this question: ...
3
votes
5answers
2k views

Working on PHP projects on a remote dev server via sFTP

I'm looking for an editor that can read and write remote PHP files via sFTP. I'm talking about not having a local copy of my PHP files. But here is the tricky part : I'd like that editor to be aware ...
3
votes
2answers
4k views

Python SSH / SFTP Module?

I've been looking around for a module which allows me to do SSH / SFTP functions in python without using POPEN to do it manually. Is there anything like this? I haven't found any real information on ...
3
votes
2answers
6k views

SSH / SFTP connection issue using Tamir.SharpSsh

This is my code to connect and send a file to a remote SFTP server. public static void SendDocument(string fileName, string host, string remoteFile, string user, string password) { ...
3
votes
6answers
667 views

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 ...
3
votes
3answers
1k views

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 ...
3
votes
6answers
4k views

SFTP Rename file to append date

I'm sending a file from a mainframe host to a linux ftp sever using sftp. I want to append the date to the filename once the file resides on the linux box. (Ex: filename.txt becomes ...
3
votes
2answers
4k views

SFTP C++ library?

Can anyone recommend a decent SFTP library for use with Windows C++ apps? If a cross-platform one is available then all the better, but it's not essential. It's for use with a commercial ...
3
votes
8answers
4k views

What would be a recommended choice of SSIS component to perform SFTP or FTPS task?

Sometimes normal FTP doesn't quite cut it... When you need to do secure FTP via SSIS packages, which product would you recommend? Before answering, please see if someone has already suggested the ...
2
votes
2answers
21 views

SFTP authentication with credentials in Wordpress MySQL database?

I'm trying to find a solution that will allow for a user to connect to a server via SFTP using a provided username/key combination (stored in a Wordpress installation's MySQL database), without ...
2
votes
3answers
294 views

Uploading to EC2 problems. How do you do FTP?

I have setup a new EC2 instance on AWS and I'm trying to get FTP working to upload my application. I have installed VSFTPD as standard, so I haven't changed anything in the config file ...
2
votes
3answers
58 views

Export data and SFTP

I am looking for a best way to export data from Oracle Database and SFTP files using Java. Any framework that does things out of box? Spring Modules?
2
votes
2answers
77 views

Why is Net::SSH2::File only allowing 32500 bytes on a write?

I have a Redhat 5.5 Linux machine using Perl Net::SSH2 to sftp a file. It appears that once the filehandle is opened for writing, I can only write a maximum buffer length of 32500 bytes for each call ...

1 2 3 4 5 9