Metadata-Version: 2.4
Name: rkt_tool_lib
Version: 2.0.3
Summary: RootKit custom tool Lib
Author-email: RootKit <rootkit@rootkit-lab.org>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# rkt_tool_lib

Cross-platform file system utilities.

## Features
- **Path Normalization**: Automatically formats paths (`/` vs `\`) based on the operating system (Windows/Linux).
- **Recursive Search**: Utilities to find directories deeply nested in the file system.
- **Singleton Pattern**: (Optional usage via `Singleton` metaclass provided).

## Usage

```python
from tool import Tool

t = Tool()

# Get current working directory formatted for OS
cwd = t.get_cwd()

# Find a directory named 'logs' recursively
log_path = t.get_dir("logs")
```
