I am trying to create a C# program that would execute the command
C:\schema>xsd.e xe filename.xml
this is the code I am using
I am getting an issues saying File not found. When I go to the location xds.exe I dont see anything in that folder, is that there needs to be an xsd.exe in the folder C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\
any help
C:\schema>xsd.e xe filename.xml
this is the code I am using
Code:
string placeDir=@"C:\schema\";
foreach (string foundName in System.IO.Directory.GetFiles(@"C:\schema\"))
{
System.Diagnostics.Process p = new System.Diagnostics.Process();
System.Diagnostics.Process.Start(@"C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\xsd.exe", @"""+foundName+""");
p.Close();
}
any help
Comment