Orchestrator Process_1

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)

@Satyam_Shrivastava

As per error either file is missing or not is downloaded completely by the time you are accessing

Cheers

@Anil_G
But while running the process file is present in the existing folder…

@Satyam_Shrivastava

Is it present in this folder

C:\Users\Administrator.nuget\packages\ifirm_mis_bot\1.0.1\content\TimeSheet Report\

Cheers

@Satyam_Shrivastava

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.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.