public Path getPath()

in commons-fileupload2-core/src/main/java/org/apache/commons/fileupload2/core/DiskFileItem.java [415:423]


    public Path getPath() {
        if (dfos == null) {
            return null;
        }
        if (isInMemory()) {
            return null;
        }
        return dfos.getFile().toPath();
    }