I am building a C# WPF Browser App (my C# skills are quite rusty).
I have a button that I want to have change color depending on if a text document has anything in it. IE: Color is Green if there is any text in it, or Red if it is empty.
Can someone please push me off in the right direction.
Thank you.
Take a look at System.IO.FileInfo
Note that if you keep f around and plan to check it again later, you will have to call f.Refresh() to ensure it has the latest information.