The most recent modification date of a SsimLibrary, Project or Scenario.

dateModified(ssimObject)

# S4 method for character
dateModified(ssimObject)

# S4 method for SsimLibrary
dateModified(ssimObject)

# S4 method for Project
dateModified(ssimObject)

# S4 method for Scenario
dateModified(ssimObject)

Arguments

ssimObject

SsimLibrary, Project, or Scenario object

Value

A character string: date and time of the most recent modification to the SsimObject provided as input.

Examples

if (FALSE) {
# Specify file path and name of new SsimLibrary
myLibraryName <- file.path(tempdir(), "testlib")

# Set up a SyncroSim Session and SsimLibrary
mySession <- session()
myLibrary <- ssimLibrary(name = myLibraryName, session = mySession)

# Check the last date of modification of the SsimLibrary
dateModified(myLibrary)
}