'How to import the data in disk.frame folder into R environment

There is a folder 'C:\tmp_flights.df' that created by disk.frame package , how to import the data into R environment again ? Thanks!

enter image description here

Below code created the disc.frame folder

  library(disk.frame)
    library(nycflights13)
    library(tidyverse)
    library(dplyr)
    library(disk.frame)
    library(data.table)
    
    flights.df <- as.disk.frame(
      flights,
      outdir = "tmp_flights.df",
      overwrite = TRUE
    )


Solution 1:[1]

The function disk.frame reads in an existing disk.frame folder.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Miff