You cannot tell if you have missing slices from the size of the image files because the recon still writes out the full image file size even if the raw data is missing.
You need to read the data and visually inspect it for missing slices. You can usually identify missing slices by looking at the time course of a voxel inside the brain in each slice. There is not a BXH file for the copy01 files so the easiest way to read them is using the 'Volume' format in readmr. For example:img = readmr('V*.img_copy01',{'Volume',[xSz ySz zSz]});
showsrs2(img); where xSz, ySz, zSz are the dimensions of the image.
Enjoy,
Chuck