Path object, something is different

Hi guys,

not sure if intended..
Creating a Path object seems to give different results compared to some time ago:

var myPath = DOpus.FSUtil.NewPath("myitem.txt");
DOpus.Output("myPath         :"+myPath);
DOpus.Output("myPath.filePart:"+myPath.filePart);
DOpus.Output("myPath.pathPart:"+myPath.pathPart);

myPath         :myitem.txt
myPath.filePart:
myPath.pathPart:

It seems the filePart property is empty for some reason now?!

This leads to script addin not working anymore:

Thank you! o)

1 Like

Confirmed, will be fixed in the next update.

Thanks! o)