Hi all,
As i mentioned in thread title, i want to create and delete folder.
How i can create and delete folder/directory with vb6.
Please help
Regard
Hi all,
As i mentioned in thread title, i want to create and delete folder.
How i can create and delete folder/directory with vb6.
Please help
Regard
Try :
Private Sub Command1_Click()
If Dir$("D:\Daniweb\", vbDirectory) = "" Then
MkDir "D:\Daniweb\"
Else
MsgBox "Duplicate Folder"
End If
End Sub
Private Sub Command2_Click()
If Dir$("D:\Daniweb\", vbDirectory) = "" Then
MsgBox "Folder not found"
Else
RmDir "D:\Daniweb\"
End If
End Sub
try this
Dim fso As New FileSystemObject
now code to create a folder
fso.CreateFolder "d:\newfolder"
and now code to delete a folder
fso.DeleteFolder "d:\newfolder"
before putting this code first add references and so goto project menu and then select references option and then select Microsoft Scripting Runtime
hope this helps you . . .
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.