file クラス : Length ゲッタ

説明

Gets the size of the file.

構文

fileInstance.Length

引数

無し。

返り値

クラス説明
longファイルのサイズ。

サンプルコード

1:

file f = new file("c:\somewhere...");

2:

long fileSize = f.Length;

注意

これは、System.IO.FileInfo.Length プロパティのラッパーです。

サイズはバイト単位です。

参照リンク

Copyright © Cooker All rights reserved.