2025-12-28 13:47:18 -05:00

54 lines
1.1 KiB
Markdown

# joomer-efsw-file-monitoring
Watch folder for images and flip them
# Demonstrates
- file monitoring
# Usage
```
joomer-ftxui-file-monitoring [path]
- use arrow keys or mouse to navigate directories
- alternatively you can press the numbers on your keyboard to select directories
```
[todo]
# Build
```
learndir/
└── joomer-ftxui-file-monitoring/
```
- Download and Install Premake
## Ubuntu Linux (kasm-ubuntu)
```
mkdir learndir
cd learndir
git clone https://git.indoodle.com/jason/joomer-efsw-file-monitoring.git
cd joomer-ftxui-file-browser
make all
bin/Linux/release/joomer-ftxui-file-monitoring
```
## Windows (win10 enterprise)
- Download Visual Studio Community Edition 2022
- Run VisualStudioSetup.exe
- Workload = [x] Desktop developemnt with C++
- Individial components = [x] Git For Windows
Run **x64 Native Tools Command Prompt for VS 2022**
```
mkdir learndir
cd learndir
git clone https://git.indoodle.com/jason/joomer-ftxui-file-monitoring.git
cd joomer-ftxui-file-monitoring
msbuild joomer-ftxui-file-monitoring.vcxproj /t:Build /p:Configuration=Debug /p:Platform=x64
bin\Debug\joomer-ftxui-file-monitoring.exe
```