Я думаю, вы получите то, что вы хотите с опцией -maxdepth 1
, основываясь на вашей текущей структуре команд.Если нет, вы можете попробовать просмотреть справочную страницу для find
.
Соответствующая запись (для удобства):
-maxdepth levels
Descend at most levels (a non-negative integer) levels of direc-
tories below the command line arguments. `-maxdepth 0' means
only apply the tests and actions to the command line arguments.
В основном вы можете выбрать:
find DirsRoot/* -maxdepth 0 -type f #This does not show hidden files
Или:
find DirsRoot/ -maxdepth 1 -type f #This does show hidden files