The idea is:
1. There is a number of files in .doc/.docx, that are stored as default inside of the project
2. In these default files there are special "words" (ex. Date)
3. I add in text format "01/01/2025" and press button "generate"
4. Folder is created in C/.../documents/01_01_2025
5. Inside the folder are all my default documents, "@date" is replaced with "01/01/2025" in each file (maybe several times)
it is clear to use global variables for replacing text, but how do I:
1. Create files in local directory (local folder chosen or created)
2. Search inside each file in my folder for "@date"
3. Replace "@date" with "01/01/2025"
4. Save file
please help ;(