3
我正在C#中進行應用程序。在這裏我想找出特定文件中的字節數。在這裏,我使用的代碼爲如何查找文件中的字節數?
using(FileStream fs=new FileStream(filename,FileMode.Open,FileAccess.Read))
{
//Here i want to find the number of Bytes.
//Some more code.
}
請幫助我。提前感謝。