I have a tcl proc that reads a file and processes it and sends it on it’s way. I want to put in a seperate file from within the tcl proc and disgard it when done. Here is what I have:
set emailfilepath “/quovadx/cis5.8/integrator/kdtest_miln/files/infor_inscvg/temp/email_infor_inscvg.txt”
set emailfile [open $emailfilepath r]
close $emailfile
Not giving me an error but does not seem to be opening the file.