showfile.gds: Enumerate opened GDS files

Description Usage Arguments Value Author(s) References Examples

View source: R/gdsfmt-main.r

Description

Enumerate all opened GDS files

Usage

1
showfile.gds(closeall=FALSE, verbose=TRUE)

Arguments

closeall

if TRUE, close all GDS files

verbose

if TRUE, show information

Value

A data.frame with the columns "FileName", "ReadOnly" and "State", or NULL if there is no opened gds file.

Author(s)

Xiuwen Zheng

References

http://github.com/zhengxwen/gdsfmt

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# cteate a GDS file
f <- createfn.gds("test.gds")

add.gdsn(f, "int", val=1:10000)

showfile.gds()

showfile.gds(closeall=TRUE)


# delete the temporary file
unlink("test.gds", force=TRUE)

gdsfmt documentation built on Dec. 26, 2020, 6 p.m.