is.ini.file: Function to check wheather file is INI format

View source: R/configtype.R

is.ini.fileR Documentation

Function to check wheather file is INI format

Description

Function to check wheather file is INI format

Usage

is.ini.file(
  file = Sys.getenv("R_CONFIGFILE_ACTIVE", "config.cfg"),
  ini.file.debug = FALSE,
  ...
)

Arguments

file

File name of configuration file to test. Defaults to the value of the 'R_CONFIGFILE_ACTIVE' environment variable ('config.cfg' if the variable does not exist and JSON/INI/YAML/TOML format only)

ini.file.debug

If TRUE, it will show error infomation when read INI config, default is FALSE

...

Arguments for read.ini

Value

Logical indicating whether the specified configuration file is INI format

See Also

is.json.file, is.yaml.file, is.toml.file

Examples

config.json <- system.file('extdata', 'config.json', package='configr')
config.ini <- system.file('extdata', 'config.ini', package='configr')
config.yaml <- system.file('extdata', 'config.yaml', package='configr')
config.toml <- system.file('extdata', 'config.toml', package='configr')
print(is.ini.file(config.ini))
print(is.ini.file(config.json))
print(is.ini.file(config.yaml))
print(is.ini.file(config.toml))

Miachol/configr documentation built on July 22, 2023, 9:55 a.m.