根据其他 c# 的存在创建不同的 XML 文件

Creating different XML files depending on the existence of others c#

保存数据时遇到问题,我正在尝试进行设置,因此如果用户尝试为他们的角色保存他们的名字数据并且文件已经存在,它将创建第二个 xml 文件 "NameData2.xml" 等等,直到达到最多 3 个文件,(因此用户可以选择不同的字符)但是目前它只是一次创建 2 xml 个文件,所有文件都包含相同的名称(我猜这是因为他们可能会在同一个 if else 语句中同时检查所有内容?我在尝试寻找答案时所能找到的只是如何检查文件是否存在,如果找不到如何创建文件,我post 如果有人有任何建议,我会在下面写我的代码,因为我很困惑!

提前谢谢你。

    // This will save the users generated name in a created file
    // NameData.xml and will take the user to the partySelectionScreen.
    private void continueButton_Click(object sender, RoutedEventArgs e)
    {

        try
        {
            NameSavingInformation nameInfo = new NameSavingInformation();
            nameInfo.GeneratedName = generatedNameTexbox.Text;
            SaveXml.SaveData(nameInfo, "NameData.xml");
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        } 

        if(File.Exists("NameData.xml"))
        {
            NameSavingInformation nameInfo = new NameSavingInformation();
            nameInfo.GeneratedName = generatedNameTexbox.Text;
            SaveXml.SaveData(nameInfo, "NameData2.xml");
        } 
        else if (File.Exists("NameData2.xml"))
        {
            NameSavingInformation nameInfo = new NameSavingInformation();
            nameInfo.GeneratedName = generatedNameTexbox.Text;
            SaveXml.SaveData(nameInfo, "NameData3.xml");
        }
        else if (File.Exists("NameData3.xml"))
        {
            MessageBox.Show("You have passed the limit of existing characters" +
                "To continue please return to the main menu and delete at least 1 character");
        }

你应该这样做。 这将对不存在的文件执行搜索并生成它们。这将允许用户在不破坏算法的情况下删除任何想要的字符。

private void continueButton_Click(object sender, RoutedEventArgs e)
{ 
    if(!File.Exists("NameData.xml"))
    {
        SaveFileInfo("NameData.xml");
    } 
    else if (!File.Exists("NameData2.xml"))
    {
        SaveFileInfo("NameData2.xml");
    }
    else if (!File.Exists("NameData3.xml"))
    {
        SaveFileInfo("NameData3.xml");
    }
    else
    {
        MessageBox.Show("You have passed the limit of existing characters" +
            "To continue please return to the main menu and delete at least 1 character");
    }
}

public SaveFileInfo(string fileName)
{
    try
    {
        NameSavingInformation nameInfo = new NameSavingInformation();
        nameInfo.GeneratedName = generatedNameTexbox.Text;
        SaveXml.SaveData(nameInfo, fileName);
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    } 
}