adf.file.exists: Test file or directory existsence in an amigaDisk object

Description Usage Arguments Details Value Author(s) Examples

Description

Tests whether a specific file (or directory) exists in an amigaDisk object.

Usage

1
2
## S4 method for signature 'amigaDisk,character'
adf.file.exists(x, file)

Arguments

x

An amigaDisk object in which this method will check for the file's existence.

file

A character string representing a file or directory name. Use Amiga specifications for file name (see current.adf.dir).

Details

This method will look for a file/directory header, based on its name. If such a header exists, it is assumed that the file exists. The file/directory itself is not checked for validity.

Value

Returns a logical value indicating whether the file exists or not.

Author(s)

Pepijn de Vries

Examples

1
2
3
4
5
6
7
data(adf.example)

## This file exists:
adf.file.exists(adf.example, "df0:mods/mod.intro")

## This file doesn't:
adf.file.exists(adf.example, "df0:idontexist")

Example output

[1] TRUE
[1] FALSE

adfExplorer documentation built on Sept. 5, 2021, 5:11 p.m.