About 5,890,000 results
Open links in new tab
  1. linux - How can I recursively find all files in current and subfolders ...

    Aug 17, 2016 · 21 The default way to search for files recursively, and available in most cases is find . -name "filepattern" It starts recursively traversing for filename or pattern from within the current …

  2. How do I recursively grep all directories and subdirectories?

    Feb 16, 2016 · Ag If you frequently search through code, Ag (The Silver Searcher) is a much faster alternative to grep, that's customized for searching code. For instance, it's recursive by default and …

  3. How to do a recursive sub-folder search and return files in a list?

    How to do a recursive sub-folder search and return files in a list? Asked 12 years, 3 months ago Modified 1 year ago Viewed 397k times

  4. Recursive file search using PowerShell - Stack Overflow

    dir -Path C:\Folder* -Filter File*.file* -Recurse | %{$_.FullName} The above example will search any folder in the C:\ drive beginning with the word Folder. So if you have a folder named FolderFoo and …

  5. registry - Could someone explain the word recursive in relation to ...

    Jan 24, 2020 · In my computing course, the word recursively is used quite a bit - I'm trying to have a deeper understanding of its use and was wondering if someone could enlighten me. EX: Searches …

  6. Recursively find all files that match a certain pattern

    Dec 12, 2015 · I need to find (or more specifically, count) all files that match this pattern: */foo/*.doc Where the first wildcard asterisk includes a variable number of subdirectories.

  7. How can I search sub-folders using glob.glob module?

    Feb 10, 2013 · When recursive is set, ** followed by a path separator matches 0 or more subdirectories. In earlier Python versions, glob.glob() cannot list files in subdirectories recursively.

  8. python - How to use to find files recursively? - Stack Overflow

    1 Here is my solution using list comprehension to search for multiple file extensions recursively in a directory and all subdirectories:

  9. Linux find file names with given string recursively

    I'm on Ubuntu, and I'd like to find all files in the current directory and subdirectories whose name contains the string "John". I know that grep can match the content of the files, but I...

  10. algorithm - Recursive Linear Search - Stack Overflow

    Recursive Linear Search Asked 9 years, 5 months ago Modified 4 years, 11 months ago Viewed 24k times