Save profile as file
filePath = save(profile,dirPath)
example
filePath = save(profile,dirPath) saves profile to disk as file specified in its Name property with a .xml extension. Saves to the current directory if the optional dirPath is left blank.
filePath
profile
dirPath
Name
.xml
collapse all
Create a profile named 'NewProfile' and save it in the current directory.
'NewProfile'
profile = systemcomposer.profile.Profile.createProfile('NewProfile'); path = save(profile);
Profile, specified as a systemcomposer.profile.Profile object.
systemcomposer.profile.Profile
Path to save, specified as a character vector. Current directory is the default if no path is specified.
Example: 'C:\Temp'
'C:\Temp'
Data Types: char
char
File path where profile is saved, returned as a character vector.
close | closeAll | createProfile | find | load | open
close
closeAll
createProfile
find
load
open