我有许多包含文件的文件夹。我想按照以下方式将它们写入CSV文件,对于每个文件夹,我查找文件:file_name,creation_date,modified_date。
这是我的代码:
DIRECTORY=/root/directory/*
FILES=/Path/to/Files/in_current_directory/*
for d in $DIRECTORY ; do
for f in $FILES do
echo "Processing $f" #what is the command for create date and modified date#
# take action on each file. store current line in a csv file
done
我该如何更改?
感谢您的帮助。