if (FALSE) {
# Specify file path and name of new SsimLibrary
myLibraryName <- file.path(tempdir(), "testlib")
# Set up a SyncroSim Session, SsimLibrary, and Project
mySession <- session()
myLibrary <- ssimLibrary(name = myLibraryName, session = mySession)
myProject <- project(myLibrary, project = "a project")
# Check the Projects associated with this SsimLibrary
project(myLibrary)
# Delete Project
delete(myLibrary, project = "a project", force = TRUE)
# Check that Project was successfully deleted from SsimLibrary
project(myLibrary)
}
Run the code above in your browser using DataLab