03-09-2024, 03:11 AM
Hi I was trying to download the midi files from this website.https://www.midiworld.com/search/1/?q=pop But however I could download the midi files directly by clicking the links or mouse-right click and save link as.... , My question is if there is any method to directly retrieve the direct link to the midi file. just like www.blablablabla.com/bla/bla.mid
another question is how to put the downloaded file to a prepared folder. for instance , C:/test/midi
Thank you so much.
[/code]
another question is how to put the downloaded file to a prepared folder. for instance , C:/test/midi
Thank you so much.
[code]var w = wnd.find(1, "Pop MIDI Files - Download for free :: MIDIWORLD.COM :: 2 - Google Chrome", "Chrome_WidgetWin_1");
foreach (var e in w.Elm["web:LINK", "download"].FindAll()) {
print.it(e.Value);
e.Invoke();
2.s();
}
[/code]