How can I automate the repetitive editing of a file so that after modifying its values, it saves automatically, and opens another file located in the same directory?
Hi @cina
1.Use the “Read Text File” activity to read the contents of the file into a string variable.
2. Use string manipulation activities, such as “Replace”, “Substring”, or “Regex” activities to modify the contents of the string variable as needed. You can apply various string operations to update the values or make changes in the file content.
3. Use the “Write Text File” activity to write the modified contents of the string variable back to the initial file, effectively saving the changes automatically.
4. Finally, Use the “Start Process” activity to launch the desired application and open the next file located in the same directory.
Thanks!!