VB.NETファイルの属性を取得する

スポンサーリンク

ファイルの属性を取得するには、System.IO.File クラスの GetAttributes メソッドを使用します。ビットごとの AND (論理積) で、どの属性が設定されているかを取得することができます。

サンプルコード

以下にサンプルコードを示します。

VB.NET 全般
    ' ファイルの属性を取得する
    Dim uAttribute As System.IO.FileAttributes = System.IO.File.GetAttributes("C:\Hoge.txt")

    ' 読み取り専用属性があるかどうか判断する (論理積で判断する)
    If (uAttribute And System.IO.FileAttributes.ReadOnly) = System.IO.FileAttributes.ReadOnly Then
        MessageBox.Show("読み取り専用属性があります")
    End If

    ' 隠しファイル属性があるかどうか判断する (論理積で判断する)
    If (uAttribute And System.IO.FileAttributes.Hidden) = System.IO.FileAttributes.Hidden Then
        MessageBox.Show("隠しファイル属性があります")
    End If

関連するリファレンス

準備中です。

スポンサーリンク