An open API service indexing awesome lists of open source software.

https://github.com/gofaone315/file-search

Script to quickly search files on your system
https://github.com/gofaone315/file-search

filesearch filesystem hacktoberfest python

Last synced: 11 months ago
JSON representation

Script to quickly search files on your system

Awesome Lists containing this project

README

          

## Overview
This Python script allows users to search for files within a specified directory based on a query. It traverses the given directory and its subdirectories to locate files that match the user's search term.

### How to Use
1. Run the script.
2. Provide the path to the directory you want to search.
3. Enter the name (or part of the name) of the file you're looking for.
4. The script will display any matching files it finds.

### Example
```bash
Enter path to directory: /path/to/directory
Enter name of file you're looking for: example.txt
Searching for 'example.txt' in /path/to/directory
Found example.txt in /path/to/directory/subdirectory
```

### Requirements
- Python 3.x
- Standard Python libraries: `os`

---