Nexus.Client.ModManagement.ReadMeManager.ReadMeManager C# (CSharp) Method

ReadMeManager() public method

A simple constructor that initializes the ReadMeManager.
public ReadMeManager ( string p_strFilePath ) : System
p_strFilePath string The path where the ReadMe folder should be created.
return System
		public ReadMeManager(string p_strFilePath)
		{
			m_strReadMePath = Path.Combine(p_strFilePath, "ReadMe"); ;
			m_dicReadMeFiles.Clear();
			if (CheckReadMeFolder())
			{
				try
				{
					LoadReadMe();
				}
				catch
				{
					m_booReadMeXMLError = true;
					FileUtil.ForceDelete(Path.Combine(m_strReadMePath, "ReadMeManager.xml"));
				}
			}

		}