FTP check if file exists and log it


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting FTP check if file exists and log it
# 1  
Old 08-11-2009
FTP check if file exists and log it

Hi,

I need to create a script that checks if a file exists on an offsite server
which only has ftp enabled. I was originally going to use perls Net::FTP
class but the client does not have perl installed nor wants it.

So, I have to use a shell script which logs into the server, then
checks if different files exist in multiple directories.

Basically, all I need to do is check if the file exists in these directories
but redirect output to a log file which I could bring back to my main
server for further processing.

Here's what I have so far:


FtpUser="username"
FtpPswd="mypassword"
HostName="hostname"
FTPFile1="/u/backups/remotefile1"
FTPFile2="/u/backups/remotefile2"


( echo "user ${FtpUser} ${FtpPswd}
ls $FTPFile1
ls $FTPFile2
bye" ) | ftp -n ${HostName}

1. How can i capture the output of ls to a file either on the remote or
current server? and (this script will be placed in root's crontab)

2. Can I place the FTPFile{n} variable assignments into another file,
and use a while statement to read the lines 1 by 1 ... without having
to close the connection each time?

Hope I've explained this clearly.

Thank you!
G

---------- Post updated at 05:19 PM ---------- Previous update was at 04:00 PM ----------

Stupid me ... I figured i could just redirect the ftp output to
the local machine at the end of my ftp command.

But, can anyone help me with my 2nd question?

Thanks!
G

Last edited by gseyforth; 08-11-2009 at 01:19 PM..
# 2  
Old 08-12-2009
Hi,

The only FTP client that I know that can support ls is NcFTP.

Here is an example of the command line you may used :

PHP Code:
$DIR_NCFTP/ncftpls -"-lR" -f $HOME/.ncftp/file_ncftp ftp://IP_ADRESS/DIRECTORY/ > PATH_OF_THE_LOCAL_DIRECTOY_WHERE_YOU_WANT_TO_WRITE_THE_LOG_FILE 
I hope this will help you.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Check if file exists

I need to check whether a file exists and has been changed. The file should contain a specific string. The file should also have been changed within the last ten seconds. How do I do that? (3 Replies)
Discussion started by: locoroco
3 Replies

2. Shell Programming and Scripting

To check if file exists

Hi, I have the below code written. However I am not getting the desired output I am checking if the particular path has file in it. #!/bin/bash ls -l /IRS2/IRS2_ODI/INFILE/*LS* 1>/dev/null 2>/dev/null if then echo $? echo "File Exists" fi ... (3 Replies)
Discussion started by: Shanmugapriya D
3 Replies

3. Shell Programming and Scripting

Check if file exists or not

Hi, I want to check if the file exists or not in the directory. i am trying below code but not working. File="/home/va59657/Account_20090213*.dat" echo "$File" if ]; then echo "file found" else echo "file not found" fi However i am getting file not found even if file exits as... (5 Replies)
Discussion started by: Vivekit82
5 Replies

4. Shell Programming and Scripting

File exists, but cannot be opened.How to check- whether it could be opened to read when it exists

Hi #Testing for file existence if ; then echo 'SCHOOL data is available for processing' else echo 'SCHOOL DATA IS NOT AVAILABLE FOR PROCESSING' : i wrote a script, where it begins by checking if file exists or not. If it exists, it truncates the database... (2 Replies)
Discussion started by: rxg
2 Replies

5. Shell Programming and Scripting

how to check to see if a file exists?

I want to write a script to see if various files exist. What I want to do is have the script search in various directories if a file exist, and if not, then output something like "/path/file does not exist". I don't actually know of how to check and see if a file exists or not. What I have in mind... (2 Replies)
Discussion started by: astropi
2 Replies

6. Shell Programming and Scripting

Check to see if a file exists?

Hi. I'd like to have an IF-Then-Else statement where I can check to see if a file exists? We have the Bourne Shell by default. I'm looking for the syntax to do something like this: if myfile.txt exists then ...my code else ...my code end if Any help would be greatly... (5 Replies)
Discussion started by: buechler66
5 Replies

7. UNIX for Dummies Questions & Answers

ftp - check if file on remote exists (skip overriding)

Hello, I have a script that uploads a file from local to remote place using ftp. The problem is that, if on remote host there is a file called the same as the one I want to upload, the ftp program overrides that file. But I don't want to override nothing (even if the remote file is older,... (3 Replies)
Discussion started by: spiriad
3 Replies

8. Shell Programming and Scripting

Problem with ftp- how to check if the remote directory exists.?

I am trying to initiate a ftp session from my shell script in the following way. In my script, as per my requirements i am writing the required ftp commands to a file and then I am using this file to carry out the ftp process. for example temp.txt will contain cd /home/user/mydir append... (2 Replies)
Discussion started by: anijan
2 Replies

9. Shell Programming and Scripting

check if exists a .ZIP file and unzip it using ftp

hi this is my question i have my script what have to verify the existence of a .ZIP file in a extern server (using ftp). if there are .ZIP files, the idea is what the script "unzip" them in the specified folder. THE PROBLEM IS what the script doen´t unzip the .ZIP files, and besides, delete... (1 Reply)
Discussion started by: DebianJ
1 Replies

10. Shell Programming and Scripting

perl ftp check file exists

I have a perl script that ftp's to an NT server, checks if the file is growing, gets the file, does some more size checking after the get on the unix box. My question, is there a good way to check if the file exists on the NT when I know the exact file to check for? I thought about doing an "ls... (2 Replies)
Discussion started by: methos
2 Replies
Login or Register to Ask a Question