BPM to create a link to folder A path inside of folder B

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.
image

It’s not really trivial.

Are you able to reference external assemblies?

Thanks Kevin! Yes, I believe I can reference external assemblies. Any idea what one I would need?

You can try to do it by referencing the windows script host. I don’t recall exactly how to do it.

I also came across this library that should do it as well:

Thanks again!! I will take a look at it.