def localRootExists()

in GuestivusLib/GuestivusLib.py [0:0]


    def localRootExists(self):
        self.error = ""
        # Check if root is valid
        if not self.localRootValid():
            return(False)
        
        # Check if root exists
        if(not os.path.exists(self.localRoot)):
            self.error = errors.localPathNotExist
            return(False)

        return(True)