I have placed a dll file in the recources property of my app (from myappProperties>>Resources>>add existing file).
Now I want my app to copy this file to a destination on my hard drive.
Is that even possible?
I have placed a dll file in the recources property of my app (from myappProperties>>Resources>>add existing file).
Now I want my app to copy this file to a destination on my hard drive.
Is that even possible?
I usually store the resource file (dll, png, whatever) in binary format (byte array).
At runtime i do this:
path = ...
File.WriteAllBytes(path, Resources.binaryStuff);
where Resources is the application's resource instance.