How to Use a Windows App with Embeded files and folders to copy to a destination. In C#

Posted by Mark Sweetman on Stack Overflow See other posts from Stack Overflow or by Mark Sweetman
Published on 2012-09-17T03:35:55Z Indexed on 2012/09/17 3:37 UTC
Read the original article Hit count: 102

Filed under:
|
|
|

I am trying to write a small application, whose only purpose is to copy some folders and .cs source files into a user specified Directory, I can do it easy enough by simply having the application look for the files and folders in its own install directory then copy them to thier destination Directory, but I was wondering if its possible to Embed the Folders and Files into the Application, so that when you run the application it creates or copies the folders and files from the exe app directly to the install directory, rather than searching for them in the apps install directory then copying them over. Basically Im trying to only have a single exe file rather than having an exe file and a bunch of folders and files along side it.

Is this possible to do with just a Windows Form App without using an actual Installer Class?

© Stack Overflow or respective owner

Related posts about c#

Related posts about Windows