I'm attempting to run the following piece of code from an Out-of-Process COM Server in its main thread, however no file is ever created.
I wondered if anyone can tell me why this is?
FILE *f = fopen("Log.txt", "w");
fputs("Tony", f);
fputs("\n", f);
fclose(f);