The Glob command is not picking up any files, which is true (see code fragment below).
set potential_file_list {}
foreach fn $filename_list {
set f_list {}
catch [set f_list [glob — $file_dir/$fn]]
foreach f $f_list {
lappend potential_file_list $f
}
}
Log file error:
[pd :pdtd:ERR /0
msgId = message0
proc = ‘tps_validFiles’
args = ‘{DIR {/quovadx/lab/test}}
{FILENAME {msg*}}
{SECS {120}}
{TODAY {N}}’
result = ‘no files matched glob pattern “/quovadx/lab/test/msg*”‘
errorInfo: ‘
no files matched glob pattern “/quovadx/lab/test/msg*”
while executing
“glob — $file_dir/$fn”
(“foreach” body line 3)
invoked from within
“foreach fn $filename_list {
set f_list {}
catch [set f_list [glob — $file_dir/$fn]]
foreach f $f_list {
lappend potential_file…”