vote up 3 vote down star
4

I have a console app that performs a lengthy process.

I am printing out the percent complete on a new line, for every 1% complete.

How can I make the program print out the percent complete in the same location in the console window?

flag

See also this related question: stackoverflow.com/questions/888533/… – divo Sep 4 at 14:27
I think the backspace method is perhaps the nicest (and most portable), though would require slightly more work. – silky Sep 4 at 14:35

2 Answers

vote up 9 vote down check

Print \r to get back to the start of the line (but don't print a newline!)

For example:

using System;
using System.Threading;

class Test
{
    static void Main()
    {
        for (int i=0; i <= 100; i++)
        {
            Console.Write("\r{0}%", i);
            Thread.Sleep(50);
        }
    }
}
link|flag
2  
Yep, this is the easiest way to do it. Make sure (if you are using it for strings of variable length) that you remember to overwrite with spaces at the end of lines. e.g. replacing "99% complete" with "Done!" will show the line "Done!omplete" - not ideal. :) – ZombieSheep Sep 4 at 14:03
You have an off by one error :P – silky Sep 4 at 14:05
Jon Skeet: Sorry, it seems stack overflow won't let me rollback ronnies edit to your post correctly. Please attempt it yourself. – silky Sep 4 at 14:09
It may be boringly worth noting that this code won't work when run on an operating system that isn't Windows. I'd recommend the SecCursorPosition approach. – silky Sep 4 at 14:11
@silky: I've just run it on Linux with Mono, and it worked with no problems. However, using your suggestion didn't - because it put the percentage at the top of the screen, rather than on the same line as "Hello : ". That's fixable of course, but it does show the advantage of a simple solution :) – Jon Skeet Sep 4 at 14:23
show 2 more comments
vote up 2 vote down

You may use:

Console.SetCursorPosition();

To set the position appropriately.

Like so:

Console.Write("Hello : ");
for(int k = 0; k <= 100; k++){
    Console.SetCursorPosition(8, 0);
    Console.Write("{0}%", k);
    System.Threading.Thread.Sleep(50);
}

Console.Read();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.