Where will the file without path get created in client system
Posted
by The King
on Stack Overflow
See other posts from Stack Overflow
or by The King
Published on 2010-06-01T09:50:30Z
Indexed on
2010/06/01
9:53 UTC
Read the original article
Hit count: 205
I have the following code in an Winform Application
String[] lines = { "LAST MESSAGE", "101" };
File.WriteAllLines("MPP_Config.txt", lines);
On my Development system, the file gets created under Bin\Debug...
Where will the file be created in the client once it is installed in the client system ?
I deploy to a website using Click once Deployment...
© Stack Overflow or respective owner