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

DeleteReadMe() public method

Deletes the readme file.
public DeleteReadMe ( string p_strFileName ) : void
p_strFileName string The path where the ReadMe folder should be created.
return void
		public void DeleteReadMe(string p_strFileName)
		{
			string strFilePath = p_strFileName + ".7z";
			strFilePath = Path.Combine(m_strReadMePath, strFilePath);
			if (File.Exists(strFilePath))
				FileUtil.ForceDelete(strFilePath);
			m_dicReadMeFiles.Remove(p_strFileName);
		}