This commit is contained in:
2008-10-03 11:22:46 +00:00
parent 4ea65e4bf6
commit 3635a5e403
9 changed files with 15 additions and 29 deletions

View File

@@ -33,7 +33,7 @@ namespace DataLoader
string genmacdata = null;
XmlDocument xd = null;
string path = "e:\\fmtall\\" + format + "all.xml";
string path = "c:\\development\\fmtall\\" + format + "all.xml";
if (File.Exists(path))
{
xd = new XmlDocument();
@@ -44,7 +44,7 @@ namespace DataLoader
// Do we need genmac - only if non-subformat
if (!issub)
{
path = "e:\\genmacall\\" + format + ".svg";
path = "c:\\development\\genmacall\\" + format + ".svg";
if (File.Exists(path))
{
XmlDocument xdg = new XmlDocument();
@@ -82,7 +82,7 @@ namespace DataLoader
// now loop through all files... If there is an _ in the name, it's a subformat
// (for example, AEP_00.xml) skip it in main loop, it's handled for each format.
DirectoryInfo di = new DirectoryInfo("e:\\fmtall");
DirectoryInfo di = new DirectoryInfo(@"c:\development\fmtall");
FileInfo[] fis = di.GetFiles("*.xml");
foreach (FileInfo fi in fis)
@@ -96,7 +96,7 @@ namespace DataLoader
// now see if there are any subformats associated with this, if so
// add them here...
DirectoryInfo sdi = new DirectoryInfo("e:\\fmtall");
DirectoryInfo sdi = new DirectoryInfo("c:\\development\\fmtall");
FileInfo[] sfis = di.GetFiles(fmtname+"_*.xml");
foreach (FileInfo sfi in sfis)
{