Hi,
Is it possible to open the local explorer and select the folder from D365 FO form display?
I would like to get the path of folder to export some reports.
It is like the browser button of the file upload button, but not for import. I need to get the folder path to export report.


I tried to put code belowed. But it does not work.
public void clicked()
{
super();
FilePath filepath;
filepath = WinAPI::browseForFolderDialog("Description goes here", "Selected path goes here", true);
info(FilePath);
}
Does anyone have any idea to get the folder path with open local explorer?
Thank you.