gpt4 book ai didi

node.js - 整天不停地搜索文件?批处理文件?

转载 作者:太空宇宙 更新时间:2023-11-03 23:42:00 25 4
gpt4 key购买 nike

我想知道如何实现这一目标?我想不断循环遍历一个目录,如果那里存在文件,请将其删除?

我可以在 bash 脚本中执行此操作还是需要使用 Nodejs 之类的东西?

谢谢!

最佳答案

这就是您要搜索的内容:

首先做:

1)您告诉脚本搜索某些文件,然后如果存在,则将其删除

您可以输入如下脚本所示的文件:

#!/bin/bash
LIST_FILE="
/path/to/file1
/path/to/file2
/path/to/file3
/path/to/file4
"
for file in $LIST_FILE
do
if [ -a $file ];then
rm -rf $file
echo $file is removed
fi
done

2)它删除由find命令创建的所有文件

find /path/to/files >> /path/to/LIST

然后运行脚本并通过输入./script.sh来调用它

#!/bin/bash
LIST_FILE=/path/to/LIST
for file in $LIST_FILE
do
if [ -a $file ];then
rm -rf $file
echo $file is removed
fi
done

关于node.js - 整天不停地搜索文件?批处理文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21877986/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com