有没有一个linux命令可以只获取文件夹及其子文件夹中的文件?我已经使用了该find
命令,但它显示了所有文件和文件夹。我正在使用 phpexec()
函数执行此 shell 命令。
答案1
您应该使用 -type f 选项来仅获取文件。
find /path_to_find -type f
有没有一个linux命令可以只获取文件夹及其子文件夹中的文件?我已经使用了该find
命令,但它显示了所有文件和文件夹。我正在使用 phpexec()
函数执行此 shell 命令。
您应该使用 -type f 选项来仅获取文件。
find /path_to_find -type f