Iam making a program that's a suppose run from a USB key. But i have problem running file that are in a folder.
Usb folder/file structure looks like:
- /data
- /install/Install2.exe
- app.EXE
- Install.exe
I can execute the install.exe file but running this code
private void Icon_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("install.exe");
}
But how do i make it to start the file in the sub folder?