36.3k views
5 votes
How do I specify a recursive search that also finds files in the current directory?

User LCC
by
8.8k points

1 Answer

4 votes

Final answer:

To perform a recursive search for files in the current directory, use 'find .' with '-type f' on Unix-like systems or 'dir /s' on Windows.

Step-by-step explanation:

To specify a recursive search that includes files in the current directory, you can use certain commands depending on your operating system. For example, on Unix-like operating systems such as Linux or macOS, you can use the find command.

The basic syntax to perform a recursive search in the current directory and all subdirectories is:

find . -type f

This command will list all the files in the current directory and its subdirectories. The '.' represents the current directory, while '-type f' indicates that you want to list files only, not directories.

If you're using Windows, you can achieve the same with the dir command in a Command Prompt window:

dir /s

The '/s' parameter tells dir to search recursively through all directories starting at the current directory.

User Usi Usi
by
8.1k points