Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
bidev
Frequent Visitor

Gracefully trap Folder Not Found Error

I tried to trap like below, but not working.  Run time error still produced.  Any help would be appreciated.  Thank you.

 

Source = Try Folder.Files("C:\nodirectory"),

output = if Source[HasError] then "Error" else "Good"

 

1 ACCEPTED SOLUTION
v-yuezhe-msft
Employee
Employee

@bidev

Please use the following code .

let
    FolderPath = "C:\nodirectory", 
    Test = try List.Count(Folder.Files(FolderPath)[Content]),
    Source = if Test[HasError] then "Cannot find Data Source" else Folder.Files(FolderPath)
in
    Source



Regards,
Lydia

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yuezhe-msft
Employee
Employee

@bidev

Please use the following code .

let
    FolderPath = "C:\nodirectory", 
    Test = try List.Count(Folder.Files(FolderPath)[Content]),
    Source = if Test[HasError] then "Cannot find Data Source" else Folder.Files(FolderPath)
in
    Source



Regards,
Lydia

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Lydia,

 

Thank you very much for the solution.  It works perfectly!

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.