Hi
I am trying to develop a webform application. On a webform I placed two textboxes ?Name? and ?Location?. And a command button called ?Install?. I have several c# project files in a particular directory located at ?C:\Program Files\Dotnet\csharp_projects? . So say I have 25 c# applications there. Following is what I am trying to achieve.
1. In the ?Name? text box I will type the name of the specific ?C# project? file folder say for example ?DatagridDemo? , located within ?C:\Program Files\Dotnet\csharp_projects?.
2. In the ?location? textbox I will Browse or type in the destination path to which this Whole ?DatagridDemo? folder and all of the project files within that folder like .cs, .res etc, must be copied. For example if the destination path specified in the location textbox is ?C:\users?.
3. Clicking on the ?Install? Button must first search for the named c# project folder (Name text box), in ?C:\Program Files\Dotnet\csharp_projects? and when found must copy the whole folder to the destination specified in ?location? text box (C:\users). So that when I explore to ?C:\Users? directory, I should see a folder named ?DatagridDemo? and all of the files within it.
So, what are the available libraries in Dotnet, that I can use while programming this? Are there any readily available functions for ?searching for a named folder in a given path? and for ?copying the whole folder and its contents to a given path??. Or I need to code it from scratch
Please, list any good books and resources that explain whole are some of these techniques?.
Thanks,