# File lib/fusefs/pathmapper.rb, line 394
        def raw_close(path,file=nil)
            file = @openfiles.delete(path) unless file

            if file && !file.closed?
                begin
                    flags = file.fcntl(Fcntl::F_GETFL) & Fcntl::O_ACCMODE
                    if flags == Fcntl::O_WRONLY || flags == Fcntl::O_RDWR
                        #update stats
                        node = node(path)
                        node.updated if node
                    end
                ensure
                    file.close
                end
            end

        end