FileInfo タイプには、ファイルのバイト数を決定する Length プロパティがあります。
まず、ファイルを設定します -
FileInfo file = new FileInfo("D:\ew");
次に、length 属性を使用します -
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 中国語 Web サイトの他の関連記事を参照してください。