最佳答案
我正在编写一个简单的 c # 控制台应用程序,上传文件到 sftp 服务器。但是,文件的数量很大。我想要显示上传文件的百分比,或者仅仅是文件上传的数量已经从要上传的文件总数。
首先,我得到所有的文件和文件总数。
string[] filePath = Directory.GetFiles(path, "*");
totalCount = filePath.Length;
然后我循环遍历文件并在 foreach 循环中一个一个地上传它们。
foreach(string file in filePath)
{
string FileName = Path.GetFileName(file);
//copy the files
oSftp.Put(LocalDirectory + "/" + FileName, _ftpDirectory + "/" + FileName);
//Console.WriteLine("Uploading file..." + FileName);
drawTextProgressBar(0, totalCount);
}
在 foreach 循环中我有一个进度条,我有问题。它没有正确显示。
private static void drawTextProgressBar(int progress, int total)
{
//draw empty progress bar
Console.CursorLeft = 0;
Console.Write("["); //start
Console.CursorLeft = 32;
Console.Write("]"); //end
Console.CursorLeft = 1;
float onechunk = 30.0f / total;
//draw filled part
int position = 1;
for (int i = 0; i < onechunk * progress; i++)
{
Console.BackgroundColor = ConsoleColor.Gray;
Console.CursorLeft = position++;
Console.Write(" ");
}
//draw unfilled part
for (int i = position; i <= 31 ; i++)
{
Console.BackgroundColor = ConsoleColor.Green;
Console.CursorLeft = position++;
Console.Write(" ");
}
//draw totals
Console.CursorLeft = 35;
Console.BackgroundColor = ConsoleColor.Black;
Console.Write(progress.ToString() + " of " + total.ToString() + " "); //blanks at the end remove any excess
}
1943年的输出仅为[]0
我做错了什么?
编辑:
我试图在加载和导出 XML 文件时显示进度条。然而,它正在经历一个循环。在它完成第一轮后,它进入第二轮,以此类推。
string[] xmlFilePath = Directory.GetFiles(xmlFullpath, "*.xml");
Console.WriteLine("Loading XML files...");
foreach (string file in xmlFilePath)
{
for (int i = 0; i < xmlFilePath.Length; i++)
{
//ExportXml(file, styleSheet);
drawTextProgressBar(i, xmlCount);
count++;
}
}
它从不离开 for 循环... 有什么建议吗?