BrentD has asked for the wisdom of the Perl Monks concerning the following question:
I need to be able to somehow parse this page to get a list of the files that they have available for download, then download the file. Directory listing is turned off on the server, so I can't just log in and then do a list. Is there a way I can convert this into a URL I can send to the server to get the file list?<script type="text/javascript" src="/WebInterface/custom.js"></script> <script type="text/javascript"> $(document).ready(function() { $('#filesContainer').fileTree({ root: '/', overrideFromHash: true, expandSpeed: 1000, collapseSpeed: 1000, multiFolder: true, customData: true }, function(link) { window.open(link); });
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: jQuery Perl Interface
by Corion (Patriarch) on Jan 25, 2018 at 20:21 UTC | |
|
Re: jQuery Perl Interface
by MorayJ (Beadle) on Jan 25, 2018 at 21:44 UTC |