Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Tham khảo tài liệu 'tự học ngôn ngữ lập trình visual basic 2005 part 8', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Chương 5 - Các File Cd sỏ dữ liệu vã XML 193 Ví dụ 5.2 Truy xuất thông tin về một file cụ thể Imports System.10 Module FilelnfoTest Public Sub Main Get a file in a special directory. Dim Info As Fileinfo Info My. Computer. FileSystem. GetFi lei nfof c Wi ndows explorer.exe Show the access update times. Console. Write Li nef Created Info.CreationTime Console.WriteLinef Last Modified Info.LastWriteTime Console. Write Li ne Last Accessed Info.LastAccessTime Check if the file is read-only. When testing file attributes you need to use bitwise arithmetic because the FileAttributes collection usually contains more than one attribute at a time. Dim ReadOnlyFile As Boolean ReadOnlyFile Info.Attributes And FileAttributes.Readonly Console.WnteLine Read-Only ReadOnlyFile Show the size. Console.WriteLineCSize bytes Info.Length End Sub End Module Đây là loại kết xuất bạn sẽ thấy Created 3 30 2004 7 35 17 PM Last Modified 8 29 2002 4 41 24 AM Last Accessed 4 28 2004 10 59 38 AM Read-Only False Size bytes 104032 Version 6.0.1106 194__ Chương 5 - Các File Cớ sỏ dữ liệu và XML 5.2.2 Tìrĩ kiếm các thư mục và cần file Đối tượng My.Computer.FileSystem cung cấp một phương thức G etDi recto ri es để truy xuất tên của tất cả các thư mục con trong một thư mục và một phương thức GetFile để truy xuất tên của tất cả các file trong một thư mục được cho. Trong những phiên bản beta đầu tiên Visual Basic đã bao gồm các lớp mới FolderProperttes và FileProperties sao lặp các lớp Directoryinfo và Fileinfo. Thật may thay Microsoft quyết định không phát minh lại bánh xe và trở lại các chuẩn .NET l.x. Cả hai phương thức đều có thêm tỉnh linh động bổ sung thông qua một phiên bản quá tải chấp nhận các thông số bổ sung. Bạn có thể định rõ một mảng với một hay nhiều chuỗi lọc ví dụ sử dụng .doc để tìm tất cả các file vổi đuôi mở rộng .doc . Bạn cũng có thể cung cấp một thông số Boolean includeSubFolders nếu TRue thì tìm kiếm các file hay thư mục tương xứng trong mỗi thư mục con .