Two different projects working on same text file | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Two different projects working on same text file

Hi I have a text file which is having fixed path on a system. Can I open this text file from two different exe at same time using the File* ? I just need to read in one project and write into other project. I couldn't pass file* pointer to different projects but path of the file is fixed

1st Sep 2021, 11:59 AM
Ketan Lalcheta
Ketan Lalcheta - avatar
2 Answers
+ 2
Have you tried it to see what happens ? I think the problem should be similar to accessing file from multiple threads.
1st Sep 2021, 12:09 PM
Arsenic
Arsenic - avatar
0
No not yet... I am planning to implement this ... As I can't pass file pointer, I can't work on mutex as well... So planning to implement mutex through registry that which project should access file pointer... Trick is like it should allow to atleast keep both the projects to keep it open. Read and write in file will be protected by me I guess
1st Sep 2021, 1:49 PM
Ketan Lalcheta
Ketan Lalcheta - avatar