Can I write data to multiple files using FileX?
Hello, everyone on the forum.
I am using an STM32H735IG, ThreadX, and FileX to create files on an SD card and write data to them.
In each iteration, I open the file using `fx_file_open`, seek to the end of the file using `fx_file_relative_seek`, write data using `fx_file_write`, close the file using `fx_file_close`, and finally flush the media using `fx_media_flush`.
When performing this operation, each file write takes about 10 milliseconds.
If I want to write multiple files in a short amount of time, should I use multithreading and have each thread write a file?
Also, when writing data to a file on a regular basis, is it okay to keep the file open and write the data without calling `Open` and `Close`?
How often should I run fx_media_flush?
I’d appreciate any advice you can offer.

