我运行一个 OpenSuse 服务器,它每晚将压缩的源代码备份上传到 Microsoft FTP 服务器。我已经编写了一个 Bash 脚本,它通过一个 cron 作业来执行此操作。
我想删除早于某个日期的备份文件。我怎么能这样做?
下面删除以dir为根的目录树下所有最后修改时间在 11 月 1 日之前的文件:
find dir -type f \! -newermt 2008-11-01 -exec rm '{}' \+
日期/时间格式应为 ISO 8601;我不知道是否接受其他格式。
您可以使用 delete 或 mdelete FTP 命令删除 FTP 服务器上的文件。我不知道选择旧文件作为服务器端操作的方法,因此一种选择是执行 FTP ls 以获取服务器上的文件列表,然后解析输出以获取那些文件早于您指定的日期。然后使用 FTP 命令删除每一个。
如果您有所有文件的本地副本,那么使用 find 在本地生成文件列表然后从服务器一次删除一个可能更容易。
如果您对 FTP 服务器有一定的控制权,那么使用 rysnc 代替 FTP 可能会更容易。
不幸的是,从 FTP 服务器删除旧文件并不像运行 find 那样简单。-mtime +30 -delete 因为通常您无法通过 shell 访问您的 FTP 空间。一切都必须通过 FTP 完成。
这里有一个简单的 perl 脚本可以解决问题。它需要Net::FTP
模块。
/*******************************************************************************************
* Author: Kevin Osborne
* This java app aims to delete non-empty directories from an FTP server that are older than
* 45 days, the 45 can be changed to whatever. I believe it's recursive, but I've only tried
* with 3 levels deep, so I can't guarantee anything beyond that, but it worked for my needs
* and hopefully it will for yours, too.
*
* It uses ftp4j, which I found to be incredibly simple to use, though limited in some ways.
* feel free to use it, I hope it helps. ftp4j can be downloaded as a jar file here:
* http://www.sauronsoftware.it/projects/ftp4j/ just include it in your IDE.
*******************************************************************************************/
package siabackupmanager;
import java.util.Calendar.*;
import java.util.*;
import it.sauronsoftware.ftp4j.*;
public class SIABackupManager {
// @SuppressWarnings("static-access")
public static void main(String[] args) {
if (args.length != 3) {
System.out.println("Usage: java -jar SIABackupManager.jar HOST USERNAME PASSWORD");
System.exit(0);
}
try {
FTPClient client = new FTPClient();
String hostname = args[0];
String username = args[1];
String password = args[2];
client.connect(hostname);
client.login(username, password);
FTPFile[] fileArray = client.list();
for (int i = 0; i < fileArray.length; i++) {
FTPFile file = fileArray[i];
if (file.getType() == FTPFile.TYPE_DIRECTORY) {
java.util.Date modifiedDate = file.getModifiedDate();
Date purgeDate = new Date();
Calendar cal = Calendar.getInstance();
cal.add(Calendar.DATE, -45);
purgeDate = cal.getTime();
if (modifiedDate.before(purgeDate)) {
String dirName = file.getName();
deleteDir(client, dirName);
client.changeDirectoryUp();
client.deleteDirectory(dirName);
}
}
}
} catch(Exception ex) { System.out.println("FTP error: " + ex.getMessage()); }
}
public static void deleteDir(FTPClient client, String dir) {
try {
client.changeDirectory(dir);
FTPFile[] fileArray = client.list();
for (int i = 0; i < fileArray.length; i++) {
FTPFile file = fileArray[i];
if (file.getType() == FTPFile.TYPE_FILE) {
String fileName = file.getName();
client.deleteFile(fileName);
}
}
for (int i = 0; i < fileArray.length; i++) {
FTPFile file = fileArray[i];
if (file.getType() == FTPFile.TYPE_DIRECTORY) {
String dirName = file.getName();
deleteDir(client, dirName);
client.changeDirectoryUp();
String currentDir = client.currentDirectory();
client.deleteDirectory(dirName);
}
}
} catch (Exception ex) { System.out.println("deleteDir error: " + ex.getMessage()); }
}
}