Not tested but here is an Autohotkey script
Code: Select all
FileSelectFile,List,3,% A_Desktop,Choose the File List,Documents (*.txt)
If List =
ExitApp
FileRead,List,% List
Loop,Parse,List,`r
Lines := A_Index
Loop,Parse,List,`r
{
ToolTip,% A_Index "/" Lines
SplitPath,A_LoopField,,Dir,Ext,Name
If Ext = mp3
{
IfNotExist,% Dir "\" Name ".cdg"
{
CDGFiles .= Dir "\" Name ".cdg"
Continue
}
Continue
}
If Ext = cdg
{
IfNotExist,% Dir "\" Name ".mp3"
{
MP3Files .= Dir "\" Name ".mp3"
Continue
}
Continue
}
}
Clipboard := "Missing CDG Files" "`n`n" CDGFiles "`n`n" "Missing MP3 Files" "`n`n" MP3Files
MsgBox,Done
1.Start Everything
2.Search for the mp3 and cdg files in the location you want
3.When Everything display the result,use File=>Export=>choose from Save as type "Text Files"=>put some name and save
4.Run the script and choose the text file...the script will search for the files and in the end it will send the result to the clipboard.
The result is displayed correctly in notepad++ but not in the windows notepad(at least on my WinXp version)