0
여러 테이블에서 읽을 때 arcpy.TableToTable_conversion()의 결과를 동일한 테이블에 추가하는 방법은 무엇입니까?arcpy.TableToTable_conversion의 결과를 동일한 테이블에 추가
감사합니다.
lf = arcpy.ListFiles()
files = 0
for f in lf:
files +=1
arcpy.TableToTable_conversion(f, out_path, "usps")
print f
print arcpy.GetMessages()
감사합니다. 시도해 보시고 알려 드리겠습니다. –