Hassan is right.
I added my file sorter to the windows rightclick menu. When you now rightclick on a folder and hit 'File Sorter' the file sorter starts and directly searches threw the folder.
[php]Private Sub checkarguments()
Dim count As Integer
Dim x() As String = Environment.GetCommandLineArgs 'get arguments
'count all pathes
For Each s As String In x
count += 1
Next
If count > 1 Then 'not your own path
Dim path As String = x(count - 1) 'starts at index 0
Dim search As New Thread(AddressOf sid) 'call new multithread
search.Priority = ThreadPriority.Highest 'set multithreads priority
search.Start(path) 'go ahead and search threw the folder
End If
End Sub[/php]
Just call it on form_load.
Ya, there are shorter methods...but meh ^.-