looking for solution … Please help
Its working! Thanks a lot…
Need one more help- i need to delete all the files in a particular folder… how to do that?
LstFilePaths= Directory.GetFiles(“FolderPath”).ToList
Next Run ForEach and Use Delete Activity inside ForEach.
Regards,
Mahesh
there will be only .txt files in that folder… can i use delete file -folderpath+"*.txt"?
How to do below calculation:
a and b are variables.
a=10
b=10
a+b-1
You can use in Assign Activity like below
C= a+b-1
Regards,
Mahesh
i am using assign activity only–
I think your variables are string type. Before adding first convert the variables to Integer or double type. And result also should be double or integer Type.
Regards,
Mahesh
Thank you!