如何在mac中打印文件名,创建日期和修改日期?

时间:2016-08-18 14:27:07

标签: macos shell

我有许多包含文件的文件夹。我想按照以下方式将它们写入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

我该如何更改?

感谢您的帮助。

0 个答案:

没有答案