Need help in deleting old files from a ftp server


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need help in deleting old files from a ftp server
# 8  
Old 01-15-2009
You can't tell the FTP server to only list the old files, no. You could tell it to list a directory and filter out any new files. The exact information ftp returns for a directory listing is implementation-dependent.
# 9  
Old 01-16-2009
Thanks Corona688! I guess I'll have to come up with a work around to get this done... I'm planning to do the following...
  1. Login to the remote FTP server.
  2. Get the directory listing into a file on my local machine.
  3. Disconnect from the FTP server.
  4. Using the list file, identify the matching old files that need to be deleted.
  5. Connect to the ftp server and delete those files.

I'll let you guys know how it works out... Thanks for all your replies...

regards,
Arun.

Last edited by rbatte1; 06-15-2017 at 09:35 AM.. Reason: Changed textual numbered list to formatted numbered list with LIST=1 tags
# 10  
Old 06-23-2009
Hi Arun,

I wondered if you have had any success with this?
I am facing the exact same requirement, where I need to delete old log files from a remote server via FTP as I only have FTP access to the server in question.

Thanks.
# 11  
Old 06-23-2009
In my case, we had a daily job that would download new files from the remote ftp server and then place it in an archive directory in local machine after processing those files. Since identifying old files from a remote ftp server was quite tricky, I wrote a script that deleted the old files from ftp server using the following logic:
  1. Created a list of all the old files by going to the archive directory on my local machine.
  2. Used this list to delete the old files from the remote ftp server.

Served my purpose! Not sure if this helps you...

regards,
Arun.

Last edited by rbatte1; 06-15-2017 at 09:35 AM.. Reason: LIST=1 tags
# 12  
Old 06-23-2009
Thanks for the quick reply Arun. I think I will have to use a similar approach.
# 13  
Old 06-23-2009
Let me know if you need any help. I can provide you with the scripts I developed for this if you want...

regards,
Arun.
# 14  
Old 06-24-2009
That would be a great help if you could send me the scripts you developed. Thank you so much.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Deleting multiple files off an ftp server once they have been downloaded

Hello, I have a server that I have to ftp files off and they all start SGRD and are followed by 6 numbers. SGRD000001 SGRD000002 SGRD000003 The script I have will run every 10 mins to pick up files as new ones will be coming in all the time and what I want to do is delete the files I have... (7 Replies)
Discussion started by: sph90457
7 Replies

2. Shell Programming and Scripting

Deleting local server file from automated FTP script

Hi, I want to delete a file on the local server, while connected to remote server through FTP. I am using the below code for this $FTP_CMD -v -n $HOST <<*! >> $LOGFILE 2>&1 user $USER $PASSWORD cd $DIR ... (11 Replies)
Discussion started by: jhilmil
11 Replies

3. Solaris

FTP-ing files from Windows server to UNIX server

I need to transfer files from a Windows server to the Unix server and have to run some shell script on it to get the required output. Is it possible to transfer files from Windows server to unix server through any shell script? If so can you please help me with the details. Thanks in... (8 Replies)
Discussion started by: ssk250
8 Replies

4. Shell Programming and Scripting

FTP multiple files from one server to one server

Hi, I'm new to shell script..I have one requriement like - In one server have more than one files,I want to ftp those files to some otehr server.. Ex : test1.pdf test2.pdf Please suggest me how to do (3 Replies)
Discussion started by: venkaswa
3 Replies

5. Shell Programming and Scripting

Need help creating a script to FTP files to a server and then delete the files that were transfered.

I am trying to FTP files to a Windows server through my Linux machine. I have setup the file transfer with no problems but am having problem deleting those files from the Linux box. My current non-working solution is below. Any ideas, anyone?? :wall: Please be gentle, I'm fairly new to this... (4 Replies)
Discussion started by: jmalfhs
4 Replies

6. UNIX for Advanced & Expert Users

why file automatically deleting in ftp server

Iam putting file in ftp server. iam doing ftp to transfer a file to ftp server but after sometime(10 sec) the file is automatically deleting in the ftp. Can i know why this happens. When my friend ftp the file to the same server , the file is not deleting aftersometime... it is there. Can... (1 Reply)
Discussion started by: nani1984
1 Replies

7. Shell Programming and Scripting

script for to take files from FTP server to UNIX server and Unzipped that files

script for to take files from FTP server to UNIX server and Unzipped that files (1 Reply)
Discussion started by: sunilamarnadh
1 Replies

8. Filesystems, Disks and Memory

Not able to FTP the files to a FTP server

Hi , We are facing a weird problem in our project. we need to send some xml & audio files to a remote FTP server from a Linux box, we are doing this in Perl script using Net::FTP->. Issue here is.. when FTPed the files using Perl scripts, only empty files ( 0 byte) are getting created on the... (2 Replies)
Discussion started by: kishorepotta
2 Replies

9. Shell Programming and Scripting

FTP multiple files from remote server to local server

Hi, I am facing a weired problem in my FTP script. I want to transfer multiple files from remote server to local server everyday, using mget * in my script. I also, want to send an email for successful or failed FTP. My script works for file transfer, but it don't send any mail. There is... (2 Replies)
Discussion started by: berlin_germany
2 Replies

10. Shell Programming and Scripting

deleting multiple files through ftp

Hi, I have a situation where I need to delete multiple files from a folder once I connect to FTP server. I am using ftp script to get the files, number of files always vary from 1 to 100. once I get the files I need to delete all the files downloaded I am making a list of all the files... (4 Replies)
Discussion started by: mgirinath
4 Replies
Login or Register to Ask a Question