showfile.gds {gdsfmt} | R Documentation |
Enumerate all opened GDS files
showfile.gds(closeall=FALSE, verbose=TRUE)
closeall |
if |
verbose |
if |
A data.frame
with the columns "FileName", "ReadOnly" and "State",
or NULL
if there is no opened gds file.
Xiuwen Zheng
http://github.com/zhengxwen/gdsfmt
# 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)