.NET
vb6file.txt
Associated article: Visual Basic 6 Filesystem Objects
Tags: .NET
Source code accompanying the article by Paul Lomax in which he examines the enhancements to Microsoft's Visual Basic 6, particularly its extended File System Object Model which is made available to you via the Scripting Runtime Library.
Visual Basic 6 File System Objects
by Paul Lomax
Listing One
Dim oOFS As FileSystemObject
Dim oDrive As Drive
Set oOFS = New FileSystemObject
Set oDrive = oOFS.GetDrive("NTWS3C$")
Listing Two
Dim oFSO As FileSystemObject
Dim oFolder As Folder
...


