Share via

Few Logic app runs are failing in file system connection with "The requested action could not be completed. Check your request parameters to make sure the path exists"

Saikat Mukherjee 0 Reputation points
2024-02-20T00:52:30.5533333+00:00

I have a logic app that connects to an on-prem data gateway file system to store data in a folder
User's image

It works fine for few runs but for few runs it fails with the below error

{
  "status": 400,
  "message": "The requested action could not be completed. Check your request parameters to make sure the path '\\Abc\\Xyz/20240219054830.d6257b68-6346-1234-9b33-9ac570e8b6b2.json' exists on your file system.\r\nclientRequestId: asasfas-d403-413d-a903-dadgagag",
  "error": {
    "message": "The requested action could not be completed. Check your request parameters to make sure the path '
  }
}

Azure Logic Apps
Azure Logic Apps

An Azure service that automates the access and use of data across clouds without writing code.

0 comments No comments

1 answer

Sort by: Most helpful
  1. MayankBargali-MSFT 71,011 Reputation points Moderator
    2024-02-20T12:30:20.4266667+00:00

    @Saikat Mukherjee As per the error the path is incorrect

    \Abc\Xyz/20240219054830.d6257b68-6346-1234-9b33-9ac570e8b6b2.json

    Correct should be \Abc\Xyz\20240219054830.d6257b68-6346-1234-9b33-9ac570e8b6b2.json

    In your folder path you can add the \ at the end and see if you still observe the same issue. \Abc\Xyz\


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.