VB.NETに指定ファイルのサイズを取得する

2021年9月15日

書式
Public ReadOnly Property Length As Long
現在のファイルのサイズをバイト単位で取得します。
使用例

Imports System.IO

Module Module1

    Sub Main()


        'ファイルパスの指定
        Dim targetFile As String = "C:\data\test_2022oly.doc"


        'FileInfo型変数fileNameの宣言
        Dim fileName As New FileInfo(targetFile)

        Console.WriteLine("ファイルのサイズ(バイト):")
        'ファイルのサイズ(バイト)の取得
        Console.WriteLine(fileName.Length)

        Console.ReadKey()

    End Sub

End Module

結果
ファイルのサイズ(バイト):
26624

VB.net

Posted by arkgame