FileInfo 類型有一個 Length 屬性,用於確定檔案有多少位元組。
首先,設定檔-
FileInfo file = new FileInfo("D:\ew");
現在使用長度屬性-
file.Length
這是完整的程式碼-
using System; using System.Linq; using System.IO; class Program { static void Main() { FileInfo file = new FileInfo("D:\ew"); long res = file.Length; Console.WriteLine("Bytes: "+res); } }
以下是輸出-
3259244
以上是C# 取得檔案的位元組數的詳細內容。更多資訊請關注PHP中文網其他相關文章!