FileInfo.Length プロパティ
現在のファイルのサイズを取得します。
Public ReadOnly Property Length As Long
[C#]
public long Length {get;}
[C++]
public: __property __int64 get_Length();
[JScript]
public function get Length() : long;
プロパティ値
現在のファイルのサイズ。
例外
例外の種類 | 条件 |
---|---|
IOException | Refresh によってファイルまたはディレクトリの状態を更新できません。 |
FileNotFoundException | ファイルが存在しません。
または Length プロパティはディレクトリに対して呼び出されます。 |
解説
ファイルを含んでいるファイル システムがこの情報をサポートしていない場合、このプロパティ値は null 参照 (Visual Basic では Nothing) です。
このプロパティの使用例については、以下の「使用例」を参照してください。その他の一般的な I/O タスクまたは関連する I/O タスクの例を次の表に示します。
実行するタスク | 参考例があるトピック |
---|---|
テキスト ファイルを作成する。 | ファイルへのテキストの書き込み |
テキスト ファイルに書き込む。 | ファイルへのテキストの書き込み |
テキスト ファイルから読み取る。 | ファイルからのテキストの読み取り |
テキストをファイルに追加する。 | ログ ファイルのオープンと追加 |
ファイルをコピーする。 | File.Copy |
ファイルの名前を変更、またはファイルを移動する。 | File.Move |
バイナリ ファイルから読み取る。 | 新しく作成したデータ ファイルの読み取りと書き込み |
バイナリ ファイルに書き込む。 | 新しく作成したデータ ファイルの読み取りと書き込み |
サブディレクトリを作成する。 | CreateSubdirectory |
ディレクトリ内のファイルを参照する。 | Name |
ディレクトリ内のファイルをサイズ順に並べ替える。 | GetFileSystemInfos |
ファイルの属性を設定する。 | SetAttributes |
使用例
[Visual Basic, C#, C++] 指定したファイルのサイズを表示する例を次に示します。
' The following example displays the names and sizes
' of the files in the specified directory.
Imports System
Imports System.IO
Public Class FileLength
Public Shared Sub Main()
' Make a reference to a directory.
Dim di As New DirectoryInfo("c:\")
' Get a reference to each file in that directory.
Dim fiArr As FileInfo() = di.GetFiles()
' Display the names and sizes of the files.
Dim f As FileInfo
Console.WriteLine("The directory {0} contains the following files:", di.Name)
For Each f In fiArr
Console.WriteLine("The size of {0} is {1} bytes.", f.Name, f.Length)
Next f
End Sub 'Main
End Class 'FileLength
[C#]
// The following example displays the names and sizes
// of the files in the specified directory.
using System;
using System.IO;
public class FileLength
{
public static void Main()
{
// Make a reference to a directory.
DirectoryInfo di = new DirectoryInfo("c:\\");
// Get a reference to each file in that directory.
FileInfo[] fiArr = di.GetFiles();
// Display the names and sizes of the files.
Console.WriteLine("The directory {0} contains the following files:", di.Name);
foreach (FileInfo f in fiArr)
Console.WriteLine("The size of {0} is {1} bytes.", f.Name, f.Length);
}
}
[C++]
// The following example displays the names and sizes
// of the files in the specified directory.
#using <mscorlib.dll>
using namespace System;
using namespace System::IO;
int main() {
// Make a reference to a directory.
DirectoryInfo* di = new DirectoryInfo(S"c:\\");
// Get a reference to each file in that directory.
FileInfo* fiArr[] = di->GetFiles();
// Display the names and sizes of the files.
Console::WriteLine(S"The directory {0} contains the following files:", di->Name);
System::Collections::IEnumerator* myEnum = fiArr->GetEnumerator();
while (myEnum->MoveNext()) {
FileInfo* f = __try_cast<FileInfo*>(myEnum->Current);
Console::WriteLine(S"The size of {0} is {1} bytes.", f->Name, __box(f->Length));
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
FileInfo クラス | FileInfo メンバ | System.IO 名前空間 | 入出力操作 | ファイルからのテキストの読み取り | ファイルへのテキストの書き込み