FileStream file = File.Create(filePath);
byte[] byteImage = Convert.FromBase64String("这里面是一个几百字的内容(加了密的)......");
file.Write(byteImage, 0, byteImage.Length);
file.Close();
如何求出文件的大小 ,单位可以是byte 也可以是KB 也可以是 MB    谢谢!!