dir.mkdir();
dir = new File(dir, getDirName());
dir.mkdir();
File dbfFile = new File(dir, "lpu_info.dbf");
if (delete) {
lpuInfo = new DBF(dbfFile.getAbsolutePath(), true, "cp866");
} else {
lpuInfo = new DBF(dbfFile.getAbsolutePath(), "cp866");
}
}
lpuInfo.startTop();
}