8 lines
336 B
Python
8 lines
336 B
Python
|
|
__author__ = 'dmy'
|
||
|
|
|
||
|
|
from FileData import *
|
||
|
|
|
||
|
|
if __name__=='__main__':
|
||
|
|
fileList=[r"D:\MyPro\cimforreduceloss\testHasttable\output\pan\701港前南线.txt",r"D:\MyPro\cimforreduceloss\testHasttable\output\pan\702高尔夫I线.txt"]
|
||
|
|
m=MergeReconfigFile(fileList)
|
||
|
|
m.Output(r'D:\MyPro\cimforreduceloss\testHasttable\output\merge')
|