How do you correctly create an array of strings containing the folder names from the variable FullFilePath = "C:\Users\UiPathRobot\Documents\Technologies"?
Split("", FullFilePath) (Option D) is incorrect because it does not specify a delimiter.
String.Replace does not perform splitting and is not relevant here.
✅ Reference: UiPath Official Documentation – String Manipulation
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit