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

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.

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.