Estoy escribiendo una aplicación de consola c # simple que carga archivos al servidor sftp. Sin embargo, la cantidad de archivos es grande. Me gustaría mostrar el porcentaje de archivos cargados o solo el número de archivos cargados ya del número total de archivos que se cargarán.
Primero, obtengo todos los archivos y el número total de archivos.
string[] filePath = Directory.GetFiles(path, "*");
totalCount = filePath.Length;
Luego, recorro el archivo y los subo uno por uno en 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);
}
En el bucle foreach tengo una barra de progreso con la que tengo problemas. No se muestra correctamente.
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
}
La salida es solo [] 0 de 1943
¿Qué estoy haciendo mal aquí?
EDITAR:
Estoy intentando mostrar la barra de progreso mientras estoy cargando y exportando archivos XML. Sin embargo, está pasando por un bucle. Después de que termina la primera ronda, pasa a la segunda y así sucesivamente.
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++;
}
}
Nunca sale del bucle for ... ¿Alguna sugerencia?