如何从目录中删除两个最低的文件(按名称)

时间:2018-10-02 10:53:34

标签: javascript arrays node.js sorting

我的目录中包含以下文件名:

01.02.2010.txt
02.02.2010.txt
03.02.2010.txt
04.02.2010.txt

我已经阅读了文件名,但没有扩展名:

fs.readdir('./files', function (err, items) {
    items.forEach(function (file) {
        console.log(file.slice(0,-5))
    });
});

我想要的是从目录中删除最后两个日期最低的文件。

您是否知道如何使用node.js来做到这一点,谢谢

2 个答案:

答案 0 :(得分:0)

这基本上只是一点思考。

您的格式为mm.dd.yyyy.txt

现在,我们可以编写一个快速函数来比较两个日期:

// Assume f1, f2 are filenames
function compareDates(f1, f2) {
    var d1 = f1.split("."),
        d2 = f2.split(".");

        var temp;
        temp = d1[2];
        d1[2] = d1[1];
        d1[1] = temp;

        temp = d2[2];
        d2[2] = d2[1];
        d2[1] = temp;

    for (var i = 2; i >= 0; i--) {

        if (parseInt(d1[i]) < parseInt(d2[i]))
            return f1;
        else if (parseInt(d1[i]) > parseInt(d2[i]))
            return f2;
    }

    return f1;
}

该函数将使用两个文件名作为输入,并输出具有较早日期的文件名。一旦有了该功能,就可以像这样遍历列表:

var earliest = [items[0], items[1]];
var index = 0;

if (compareDates(items[0], items[1]) == items[1])
    index++;

items.forEach(function(file) {
    if (compareDates(earliest[index], file) == file) {
        earliest[index] = file;
        if (compareDates(earliest[index], earliest[!index]) == earliest[!index])
            index = !index;
    }
});

此时,数组earliest将包含日期最早的两个文件名。希望这会有所帮助!

编辑:正如另一个人所说,您可以像这样删除实际文件:

fs.unlink(filename, function(err) {
    if (err)
        throw err;
    console.log(`${filename} deleted.`);
});

答案 1 :(得分:0)

我根据已经包含日期的文件名为列表files变量中的每个文件生成日期。在dates变量中包含日期后,我对所有日期进行了排序,因为文件列表的顺序可能错误。在对日期进行排序之后,我仅检索日期数组中的前两个元素,并根据日期生成文件名,并将文件名存储在filesNames变量中。

var files =["04.02.2010.txt","01.02.2010.txt","03.02.2010.txt", "02.02.2010.txt"];

// Loop through the list of file and generate date corresponding to the name of each file
var dates = []
files.forEach(function(date){
	var matches = date.match(/^(.+)\.txt$/);
	var dateTxt = matches[1].split('.');
	var fileDate = new Date(dateTxt[2], dateTxt[1], dateTxt[0]);
	dates.push(fileDate);
});

// Sort list of dates
dates.sort(function (date1, date2) {
	return date1 - date2
});

// Get the 2 lowest dates
var datesToDeletes = dates.slice(0,2);

// Regenerates filesnames
var filesNames = []
datesToDeletes.forEach(function(d){
	var date = d.getDate()
	// Add 0 before date if the month has only one number 
	date = (String(date).length == 1)? "0" + date : date;
	var month = d.getMonth()
	// Add 0 before month if the month has only one number 
	month = (String(month).length == 1)? "0" + month : month;
	var year = d.getFullYear();
	var dateString = date + '.' + month + '.' + year;
	var fileName = dateString + '.txt';
	filesNames.push(fileName);
})

// Deletes files
filesNames.forEach(function(file){
	var path = "" + file;

    // I put console log just for debugging purpose
	console.log(path)

	// Delete each file
    // Here you can delete the file because you have the name of the file in the path variable
	/*
		fs.unlink(path, (err) => {
				throw err;
		});
	*/
})