views:

22

answers:

0

Hello,

From a Windows Forms .NET 3.0 application, I'm saving some user preferences using the built in Settings.Default.Save() mechanism. The results gets stored in the users AppData path as expected, but there's a long suffix attached to the folder name:

C:\Users\Bob\AppData\Local\Acme\HelloWorld.exe_Url_ei0yyv33jvrgjqybolgkilwx2u1i32lq\

I can guess how this might be a useful security feature, but in my case, I'd like to turn this off and get:

C:\Users\Bob\AppData\Local\Acme\HelloWorld\

or

C:\Users\Bob\AppData\Local\Acme\HelloWorld.exe\

related questions