Can two process open the text file to write
Hi I have one exe which loads DLL... This DLL has opened one text file... It is not closed till exe scope of execution is not over... First of all exe loads DLL, calls one DLL function which open text file for written... This text file path is fixed and already known which does not change... Post DLL function call, exe calls another exe which inturn open same text file which DLL is opening Please note that I just wanted to write to text file and this is not issue of multithread...only one thread is there and no simultaneously write of text file will happen from DLL and second exe With this information, I have a query... When DLL function opens text file for writing, it works properly... But when exe number 2 tries to open text file for writing, it gives error code as 13 from fopen Can any one help on this ?