Hi Guys,
I have a case where Iam moving Files from one location Folder(Location A) to an Archive folder(Location B).
I want the count of the files transfered from Location A to Location B.
Please help.
Thanks!
Hi Guys,
I have a case where Iam moving Files from one location Folder(Location A) to an Archive folder(Location B).
I want the count of the files transfered from Location A to Location B.
Please help.
Thanks!
Hey!
Try this:
Directory.GetFiles(“FolderPath”).Count
Regards,
NaNi
I understand you want the number of files the robot transfers, correct?
If so, first find the number of files in the target folder. Then find the number of files in the folder you will transfer and finally get the file count of the destination folder when the transfer process is complete.
With these assignments, you can control both how many files have been transferred and whether all files have been transferred by making the first state - last state.
Directory.GetFiles(strFolderArchive+Path.GetFileName(file)).Count
Regards,
MY