https://github.com/zly-u/cli_randomfilepicker
A random Windows CLI tool.
https://github.com/zly-u/cli_randomfilepicker
cli cpp23 winapi
Last synced: about 1 year ago
JSON representation
A random Windows CLI tool.
- Host: GitHub
- URL: https://github.com/zly-u/cli_randomfilepicker
- Owner: Zly-u
- Created: 2024-05-05T11:19:28.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-05T15:15:03.000Z (about 2 years ago)
- Last Synced: 2025-01-29T20:40:31.551Z (over 1 year ago)
- Topics: cli, cpp23, winapi
- Language: C++
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CLI Random File Picker
Just a small random thing I thought would be interesting to do since I have never done WinAPI stuff before.
Made me learn about whack of unicode and that C++ has second type of entry for unicode stuffos.
# Usages
### 1. Drag and Drop Batch script
Make a `.bat` file out of this lil snippet and then drag and drop desired directories on the `.bat` file.
To change the amount of files it supposed to pick just change the amount in `AMOUNT_OF_FILES` variable of this script.
```batch
@echo off
set AMOUNT_OF_FILES=10
CLI_RandomSourcesPicker.exe %AMOUNT_OF_FILES% %*
pause
```
### 2. Terminal/CMD
`app.exe [Path2] [Path3] ...`
### 3. Just run it
It will tell you what to do step by step.