ShadowKnightMK4 / OdinSearch

Search thru local computer files and feed matching output to a class that consumes it.
MIT License
1 stars 0 forks source link

Required: Console must at minimum support output these 3 ways. #12

Closed ShadowKnightMK4 closed 5 months ago

ShadowKnightMK4 commented 6 months ago

Console must support these outputs.

Send to console.out / 'stdout' as plain Unicode Text: Example -> "C:\Windows\notepad.exe."

Send to a target CSV (Excel file) for import later. Code may support indicated which parts to send but the console DOES NOT need it.

Send to a a target unicode text file.

ShadowKnightMK4 commented 6 months ago

Currently stdout works. Having tested stderr well. File creation works but we're not sending output there for some reason.

This collection of stuff is being handled with the simple console class. Haven't done the csv file yet for it.

ShadowKnightMK4 commented 5 months ago

did a video showing stdout, saving as unicode text to a file and the excel CSV file. Marking done for now.