Sorry, you're right, this tool (and the python script it calls, D:\ArcGIS\Desktop10.0\ArcToolbox\Scripts\ExportXYV.py), only supports feature class input.You could manipulate your output csv file using python code in a Calculate Value tool with a function embedded inside, it, for example:expression: fixfile(r"%Output file%")
("Output File" is a model element; note the "r" and the quotes, they are important. Make "Output file" a precondition so it will exist when the Calculate Value is run.)Code block:def fixfile(infile):
# read file into a list,
f = open(infile,"r")
lines = readlines(f)
f.close()
# for each line, delete first column, write back
f = open(infile,"w")
for line in lines:
linelist = line.split(",")
lineout = ",".join(linelist[1:])
f.write(lineout)
f.close()
I'm assuming there are no embedded commas in your data. That would break the script.