0

我需要files.txt使用10 lines和 之类的名称进行创建10FRE001 then 10FRE002,知道吗?我该怎么做?如何检查是否已经有 10 行以及如何将名称从10FRE001to递增10FRE002?要检查是否已经有 10 行,我想使用int counter++;我会看到的...但是我不知道如何使用文件名...有什么提示吗?谢谢大家

这是我到目前为止的代码,它读取和写入一个新的文本文件,但我不知道如何更改文件的名称......

string conteudo="";
int numeroLinhas=0;

using(var writer=new StreamWriter(Txt_DestinoPath.Text, true))
using(var reader=new StreamReader(Txt_OrigemPath.Text)) {
    while(reader.ReadLine()!=null)
        numeroLinhas++;

    string oi=numeroLinhas.ToString();

    writer.WriteLine(oi);
    int contador=0;

    for(int i=0; i<numeroLinhas; i++) {
        if(contador<9) {
            contador++;
            writer.WriteLine(@"\campo0"+contador+@"\");
        }
        else {
            contador++;
            writer.WriteLine(@"\campo"+contador+@"\");
        }
    }
}

using(var sw=new StreamWriter(Txt_DestinoPath.Text, true))
using(var sr=new StreamReader(Txt_OrigemPath.Text))
    while((conteudo=sr.ReadLine())!=null) {
        // Tira asteriscos,remove valor vazio, insere barras 
        string[] teste=conteudo.Split(new[] { '*' }, StringSplitOptions.RemoveEmptyEntries);

        var noEmptyParts=
            teste
                .Where(p => !String.IsNullOrWhiteSpace(p))
                .Skip(2)
                .Select(p => String.Format("\\{0}\\", p.Trim()))
                .ToArray<String>();

        string resultado=String.Join("", noEmptyParts);

        if(Txt_DestinoPath.Text==""||Txt_DestinoPath.Text==string.Empty) {
            MessageBox.Show("Nenhum Caminho de Origem Escolhido.");
            return;
        }

        // Cria novo arquivo txt                
        sw.WriteLine(resultado);
    }

上面计数器的结果是:\campo01\, \campo02\, \campo03\ .... \campo10\, \campo11\ ...

我需要更改的名称我会放在上面

Txt_DestinoPath.Text + FileThatIneedToIncrement,true)
4

1 回答 1

2

要做 10FRE001, 10FRE002, ... 命名你可以试试这个:

for(int i = 0; i<10; i++)
{
    string fileName = string.Format("10FRE{0:D3}",i);
    // other codes
}

看看这个,还有这个

于 2013-01-30T19:21:29.223 回答