cancel
Showing results for 
Search instead for 
Did you mean: 

Cannot recursively call actions in a Shared object 'Utility - File Management'

Stephen
Level 3
Hi All, I am calling the Utility-File Management VBO and keep on getting this message. Has anyone else come across this? Is there a fix? In this particular scenario I am using the Check Directory Exists command. Internal : Cannot recursively call actions in a Shared object 'Utility - File Management'.
1 REPLY 1

__
Level 4
I experienced this when an exception is getting thrown. Please verify no exception is being thrown by changing the code inside the Directory Exists code block to the following: Try Exists = Directory.Exists(Directory_Name) Catch ex As Exception Exists = False MsgBox(ex.Message) End Try