private String getRealPath()

in src/java/org/apache/fulcrum/upload/DefaultUploadService.java [305:317]


    private String getRealPath(String path)
    {
        String absolutePath = null;
        if (applicationRoot == null)
        {
            absolutePath = new File( path ).getAbsolutePath();
        } else
        {
            absolutePath = new File( applicationRoot, path ).getAbsolutePath();
        }

        return absolutePath;
    }