You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2015/03/25 10:18:52 UTC

[jira] [Resolved] (CAMEL-6082) File2 Component Over-normalizing A Files Absolute Path

     [ https://issues.apache.org/jira/browse/CAMEL-6082?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen resolved CAMEL-6082.
--------------------------------
    Resolution: Won't Fix
      Assignee: Claus Ibsen

> File2 Component Over-normalizing A Files Absolute Path
> ------------------------------------------------------
>
>                 Key: CAMEL-6082
>                 URL: https://issues.apache.org/jira/browse/CAMEL-6082
>             Project: Camel
>          Issue Type: Improvement
>          Components: camel-core
>    Affects Versions: 2.10.3
>         Environment: Linux
>            Reporter: Jeremy Lucier
>            Assignee: Claus Ibsen
>            Priority: Minor
>             Fix For: Future
>
>
> We have a route using File2 to listen for a file to be dropped in a folder.  When the file lock attempts to occur, it throws an exception saying the file doesn't exist. Same goes for moving the file using preMove.
> The reason being is some files that we're receiving have windows paths in their file name, ex: "C:\logs\log.txt".  On our Linux box it is represented as: "/pickup/C:\logs\log.txt" (note the slashes)
> A standard Java File would handle that fine and properly identify the filename vs the path, however GenericFile seems to want to normalize that to: "/pickup/c:/logs/log.txt". That normalization causes camel to throw errors since that location/file doesn't exist.  
> Untested, but in the GenericFile class, it looks like this might be the culprit:
>  // we must normalize path according to protocol if we build our own paths
>  String path = normalizePathToProtocol(getEndpointPath() + File.separator + getRelativeFilePath());
> message.setHeader(Exchange.FILE_PATH, path);
> Let me know if you need more information, thanks!



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)