Hi ,
I am using Teamsite 6.5
I have some problem with checking whether a file exists or not during workflow intialization.I have pasted below the small piece of code that i am using for checking.
my $filename="templatedata/About Us/Aboutus_Level1/data/20060424124805.xml"
if(-e $filename)
{
#if file exists do this operation
}
else
{
#file dosn't exist
}
Is my PERL code to check whether the particular xml file exists in the following path is correct?.
Kindly advise.
Thanks in advance