On my local client I’m passing a knime url to a url to file path node, which works fine. The value of the path is (knime://knime.workflow/…/data) so that it looks up from root of my workflow and down to my data subdirectory. As soon as I move that to knime hub it can’t figure out what’s going on and returns an error. Is there a reason that knime hub wouldn’t be able to understand a knime url when a local client running the same version of knime (5.3.3 in this case) does?
The reason for the path format is because it doesn’t form a normal subdirectory path (knime://knime.workflow/data) and will modify it with the name of the workflow. It’s a strange behavior, but this is the workaround that works locally. The physical path it’s converting to should be something like (C:\localpath\workflowfolder\data), but that only works with the (/…/data) path format. Otherwise it creates something like (C:\localpath\workflowfolder\workflowname\data), which is wrong.