| ConfigurationItemCreate Method |
Creates a new configuration file that can then be loaded normally.
Note: This will NOT overwrite an existing file.
Namespace:
Galactic.Configuration
Assembly:
Galactic.Configuration (in Galactic.Configuration.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public static bool Create(
string folderPath,
string name
)
Public Shared Function Create (
folderPath As String,
name As String
) As Boolean
public:
static bool Create(
String^ folderPath,
String^ name
)
static member Create :
folderPath : string *
name : string -> bool
Parameters
- folderPath
- Type: SystemString
The path of the folder to create the configuration item. - name
- Type: SystemString
The name of the configuration item to create.
Return Value
Type:
BooleanTrue if the file was created or already exists, false if an error prevented it from being created.
See Also