Hi,
I am pretty new to c# presently. I have a text file called tc.txt (comman separated) with the following content below:
T001,Dirks,c:\dirks\001.tif
T001,Dirks,c:\dirks\002.tif
T002,Matt,c:\matt\003.tif
T002,Matt,c:\matt\004.tif
T003,Ted,c:\Ted\005.tif
T003,Ted.c:\Ted\006.tif
When the file is read and written to another text file called output.txt (comma seperated). every line within the same folder should be written as follow;
T001,Dirks,c:\dirks\001.tif,c:\dirks\002.tif
T002,Matt,c:\matt\003.tif,c:\matt\004.tif
T003,Ted,c:\Ted\005.tif,c:\Ted\006.tif
Any help will be appreciated.