Hey, im only new, so please excuse me if i do something wrong.
But im making a program where all the program does is write EVERY file and EVERY folder name into a .txt file called "KMOD! Log.txt"
The program knows what directory to list, because the user of the program must navigate into the directory then press "Dump To Log File" to dump the contents into the log
Currently the ONLY code i have is::
Private Sub Command1_Click( )
Open App.Path & "\log.txt" For Output As #1
Do While Dir1.ListIndex < Dir1.ListCount - 1
MsgBox.Dir1.Dir
Dir1.ListIndex = Dir1.ListIndex + 1
Loop
Close #1
End Sub
But im making a program where all the program does is write EVERY file and EVERY folder name into a .txt file called "KMOD! Log.txt"
The program knows what directory to list, because the user of the program must navigate into the directory then press "Dump To Log File" to dump the contents into the log
Currently the ONLY code i have is::
Private Sub Command1_Click( )
Open App.Path & "\log.txt" For Output As #1
Do While Dir1.ListIndex < Dir1.ListCount - 1
MsgBox.Dir1.Dir
Dir1.ListIndex = Dir1.ListIndex + 1
Loop
Close #1
End Sub
Comment