You guys have always amazed me and I am sure this will be no exception!
I am working on a BPM which needs to search for an existing folder with a known network path based on Part Number (setupfolder below) and create a link to that folder inside of another existing folder.
I am able to find the folder with no problem:
setupfolder = @“\directoryA\Share\SET-UP SHEETS" + cpartnum;
if(System.IO.Directory.Exists(setupfolder))
{
// Code to create link to setupfolder inside of:
directoryB\EpicorJobData\Job_” + ttjh.JobNum
}
I experimented with “CreateSymbolicLink”, but got an error. Not sure if that is what is needed.