| showfile.gds {gdsfmt} | R Documentation |
Enumerate all opened GDS files
showfile.gds(closeall=FALSE, verbose=TRUE)
closeall |
if |
verbose |
if |
A list of gds.class objects.
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)