/// <summary> /// Gets the path for a specific stamp instance within the stamp / feature structure. /// </summary> /// <param name="m_featureType">The stamp feature type</param> /// <param name="m_featureName">The stamp name</param> /// <returns>The path to the specific stamp instance directory.</returns> public static string GetStampInstanceDirectory(GaiaConstants.FeatureType m_featureType, string m_featureName) { return(CreatePathIfDoesNotExist(GetStampFeatureDirectory(m_featureType)) + "/" + m_featureName); }
/// <summary> /// Creates and returns the path to a certain stamp feature type. /// </summary> /// <param name="featureType">The feature type which we want to create / get the folder for.</param> /// <returns>The path to the specific stamp feature insisde the stamps folder.</returns> public static string GetStampFeatureDirectory(GaiaConstants.FeatureType featureType) { return(CreatePathIfDoesNotExist(GetStampDirectory() + "/" + featureType.ToString())); }