file movement

 
Hello geniuses
I have used a file to store information for different pair, which reads them from the file when needed.
Writing and reading from the file is done correctly.
Now I use two metatraders for several currency pairs. But because the storage location of each of them is separate, they cannot read each other's files.
Is there a way that I can save all the files in another place and read them all again from there?
 
soheyr6200: But because the storage location of each of them is separate,

They are separate unless you use the common flag.

 
William Roeder #:
They are separate unless you use the common flag.

thank you for your answer

can you explain more sir

do i must use " FILE_COMMON " when  I write it and create it?


Something like this?

int filehandle = FileOpen(filename,FILE_READ|FILE_WRITE| FILE_COMMON  |FILE_CSV|FILE_ANSI,",");


In this case, can I read the file from some metatraders that are connected to one account?