Hi all
This is the error i am getting while scheduling my bot to run for unattended mode…
In the process i need to download an excel file from webpage and need to run VBA code…
This is my xaml file Main.xaml (532.0 KB)
Please let me know how can i reduce this error.
Could not find a part of the path ‘C:\Users\Administrator.nuget\packages\ifirm_mis_bot\1.0.1\content\TimeSheet Report\timesheet-view.csv’. at System.Activities.Statements.Throw.Execute(CodeActivityContext context) at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager) at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)
It seems like you’re encountering an error related to file path:
Verify the Path: Double-check if the file timesheet-view.csv exists at the specified location. Ensure that the file path is correct and that the file hasn’t been moved or deleted.
Check File Permissions: Ensure that you have the necessary permissions to access the file and its parent directories. Sometimes, permission issues can prevent access to files.
Check for Renamed Files: Sometimes, files can be renamed or moved within the package. Ensure that the file name and path specified in your code match the actual file location within the package.