1)CHDIR: Statement
Ex: ChDir "D:\abc"
2)CHDrive: To change the drive
3)CurDir: denotes about current directory path
4)Dir: Function
Ex: Dir("D:\Consolidation\") means i am referring, CONSOLIDATION folder\directiory in my "D" drive
5)FileCopy: Statement
Sub FileCopy_Folder_To_Folder()
Dim SourcePath, DestinationPath
SourcePath = "C:\Users\pavan kumar\Downloads\"
Filename = Dir(SourcePath & "*.zip")
DestinationPath = "C:\Users\pavan kumar\Downloads\abcdefg\"
FileCopy SourcePath & Filename, DestinationPath & Filename
End Sub
6)FileDateTime - Function
7)FileLen - Function
8)Getattr - Function
9)GetOpenFileName - Method
10)GetSaveasFileName - Method
11)Kill - Method
Sub Kill_Files_in_a_Directory()
'to delete all text files available in "D\Consolidation" folder
Kill ("D:\Consolidation\*.TXT")
End Sub
12)Remove\Delete the Folder
Sub RemoveDirectiory()
'To create a Folder in C drive
MkDir ("C:\FolderName")
'To remove the folder in C drive
RmDir ("C:\FolderName")
End Sub