connect_adf {adfExplorer} | R Documentation |
Create a connection to a virtual disk
Description
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.
Usage
connect_adf(filename, write_protected = TRUE)
Arguments
filename |
Filename of the |
write_protected |
A |
Value
Returns an R connection of class adf_device
.
Author(s)
Pepijn de Vries
Examples
adz_file <- system.file("example.adz", package = "adfExplorer")
my_device <- connect_adf(adz_file)
device_capacity(my_device)
close(my_device)
[Package adfExplorer version 2.0.0 Index]