Check File Size

Is there a IO-type service that will return the size of a file?

There is nnot built in wM service to do that.
You can write jave Service
FileInputStream fis = new FileInptuStrea(fileName);
int fileSize = fis.available();

Thanks. works like a champ.