Looks like the labels contain numbers. Then you could try Int32.Parse:
if (int.Parse(lblCapacity.Text) <= int.Parse(lblSizeFile.Text))
Of course you might want to add some error checking (look at Int32.TryParse and maybe store the parsed int values in some variables, but this is the basic concept.