connect_adf | R Documentation |
Establish a connection to a virtual disk stored as Amiga Disk Files (ADF).
You cannot write or read directly from this connection. Instead, use the
methods provided in this package to retrieve information about the virtual
disk or create connections to the files on the disk, to which you can
write and read from (see adf_file_con()
). Like any other connection,
please use close()
to close the connection after use.
connect_adf(filename, write_protected = TRUE)
filename |
Filename of the |
write_protected |
A |
Returns an R connection of class adf_device
.
Pepijn de Vries
adz_file <- system.file("example.adz", package = "adfExplorer")
my_device <- connect_adf(adz_file)
device_capacity(my_device)
close(my_device)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.