FileAttributes : File Attributes « Stream File « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Stream File » File Attributes 
13.2.2.FileAttributes
public class Test
   public Shared Sub Main
        Dim lngAttributes As Long

        lngAttributes = System.IO.File.GetAttributes("test.txt")

        ' Use a binary AND to extract the specific attributes.
        Console.WriteLine("Normal: " & CBool(lngAttributes And IO.FileAttributes.Normal))

        Console.WriteLine("Hidden: " & CBool(lngAttributes And IO.FileAttributes.Hidden))

        Console.WriteLine("ReadOnly: " & CBool(lngAttributes And IO.FileAttributes.ReadOnly))

        Console.WriteLine("System: " & CBool(lngAttributes And IO.FileAttributes.System))

        Console.WriteLine("Temporary File: " & CBool(lngAttributes And IO.FileAttributes.Temporary))

        Console.WriteLine("Archive: " & CBool(lngAttributes And IO.FileAttributes.Archive))

   End Sub
End Class
Normal: False
Hidden: False
ReadOnly: False
System: False
Temporary File: False
Archive: True
13.2.File Attributes
13.2.1.File's Attributes
13.2.2.FileAttributes
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.