Sidebar

Can I FTP to a file with no extension? Getting error: "Unable to get file name from path"

0 votes
489 views
asked Jun 20, 2019 by brandon-w-8204 (33,270 points)
I want to be able to FTP a file to a server but leave it without an extension. Without the extension I get this error:

com.qvera.qie.exception.NoResultsException: Unable to get file name from path

1 Answer

0 votes
You need to use the .{no-extension} in the ftp path.

example "test\*.{no-extension}"

You can use this with either the qie.*WriteFile commands or the FTP destination nodes.
answered Jun 20, 2019 by brandon-w-8204 (33,270 points)
...