uploading directories via SFTP


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting uploading directories via SFTP
# 1  
Old 10-12-2007
uploading directories via SFTP

Hello All,

Is there a way to upload whole directories to a machine using sftp (scp is not an option)? I have to use sftp because the machine that I am connecting to only has SFTP abilities (uploading from a linux box to a windows box).

Currently I am automating a copy however right now I am just copying all the files in a directory. Copying the entire directory would eliminate me having to parse the data files into appropriate directories on the windows side. Right now I use the put command to execute the file upload and I dont know if there is a recursive flag I could use to get the job done.

Thanks in advance for the help.
# 2  
Old 10-12-2007
So I guess my sort question is, does anyone know a way to implement recursion when utilizing sftp to upload files to a remote machine?
# 3  
Old 10-12-2007
i usually compress files before I s/ftp them to save time during transfer then uncompress on the other end. I have done that from a UNIX server to a Win2k server before and it works fine. You just need to use a compression format that Windows can uncompress.

Other option would be to create a batch file before running the sftp command and give it that. maybe output ls -R to a file then format the file and use it.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Web Development

Uploading files via php

I used the following code, which I found on the internet to upload files. <!-- The data encoding type, enctype, MUST be specified as below --> <form enctype="multipart/form-data" action="upload2.php" method="POST"> <!-- MAX_FILE_SIZE must precede the file input field --> <input... (2 Replies)
Discussion started by: jgt
2 Replies

2. Shell Programming and Scripting

Copy Directories with Files from One Server to Other using sftp

Hi, I have a requirement where I have to connect to another server and copy directories from one server to another Directories on the Source server look like below (YYYY-MM-DD- 1 to 23) drwxr-xr-x 2 test_user dmfmart 422 Sep 1 23:45 2014-09-01-18drwxr-xr-x 2 test_user dmfmart ... (1 Reply)
Discussion started by: arunkesi
1 Replies

3. Shell Programming and Scripting

Uploading using sftp file1 copied to file2

Hi All, i am using hp-ux server and doing mput command for uploading the multiple files. below is the code sftp hfjr@usilehrttlsd01.com cd /home/sftp_dir mput kk1 kk2 i am getting Uploading kk1 to /home/sftp_dir/kk2. problem is i am getting kk2 file only not kk1 file. when i am... (13 Replies)
Discussion started by: krupasindhu18
13 Replies

4. UNIX for Advanced & Expert Users

SFTP Resticting Only Uploading Of A File

I have setup our SFTP server: SFTP Setup: /etc/ssh/sshd_config: Subsystem sftp internal-sftp Match Group sftpusers PasswordAuthentication yes ChrootDirectory /srv/sftponly AllowTCPForwarding no X11Forwarding no ForceCommand internal-sftp Adding the... (5 Replies)
Discussion started by: metallica1973
5 Replies

5. Shell Programming and Scripting

Help with SFTP on directories

Hi Junta, please help me with SFTP on remote directories. i want to get the latest generated directory and its contents from remote machine to local host using SFTP. is there any possible way to achive this?? please help me. i feel its a bottle neck for me:(:( (1 Reply)
Discussion started by: mahi_mayu069
1 Replies

6. UNIX for Dummies Questions & Answers

Moving files between directories using SFTP

I want to connect to an SFTP server, GET some files, then move those files to a different directory on the SFTP server so I don't try to GET them next time. But there doesn't seem to be a way to move files between directories on the remote server from SFTP. I missing something obvious? And if... (6 Replies)
Discussion started by: cjhancock
6 Replies

7. Shell Programming and Scripting

Issue in uploading file using sftp

Hi I'm using this script to upload a file from local system to sftp server. But in the log file i'm getting an error "Error during upload" Can you please help me out ... ### CONFIGURATION LOCAL_DIR=/abc/out FILE_MASK="File*.txt" LOG_DIR=/abc/error/File_`date "+%Y%m%d%H%M%S"`.LOG... (3 Replies)
Discussion started by: Jaychandra
3 Replies

8. UNIX for Dummies Questions & Answers

help uploading directories with SFTP

Hi, I am a newbie and not really familiar with commands, I have searched the forum, but there was only one thread. That thread suggested compressing it and then decompressing it. So I am wondering, what format do I compress it to, and how do I decompress it once I uploaded it from within SFTP... (4 Replies)
Discussion started by: greetea
4 Replies

9. UNIX for Advanced & Expert Users

Perl Uploading Files

Using perl 5.8.0, Linux 2.4.20-30.9, RedHat 9.0. We have many .cgi's that allow privileged users to upload files to the server through a web browser. We've had these .cgi's for years and have never had any problems with them. Recently the files being uploaded are sometimes being given 600... (16 Replies)
Discussion started by: sstevens
16 Replies

10. UNIX for Dummies Questions & Answers

uploading

can i upload the file using telnet from my computer to the internet ... let me repeat ... using putty telnet :) and whats the command ?? (6 Replies)
Discussion started by: SeeD
6 Replies
Login or Register to Ask a Question