Description
The FilePath
property of the Editor.MetaData
class represents the file path to the metadata file. This property is used to specify or retrieve the location of the metadata file that the MetaData
class operates on. It is a public instance property of type System.String
.
Usage
To use the FilePath
property, you need to have an instance of the Editor.MetaData
class. You can then get or set the file path for the metadata file as shown in the example below.
Example
// Create an instance of the MetaData class
Editor.MetaData metaData = new Editor.MetaData();
// Set the file path to the metadata file
metaData.FilePath = "C:\\path\\to\\metadata.json";
// Retrieve the file path
string path = metaData.FilePath;
// Output the file path
// Note: Avoid using Console.WriteLine in s&box
// Instead, use the appropriate logging or UI display method
// Example: Log.Info(path);