aMule Forum

English => aMule Help => Topic started by: dvt on December 05, 2008, 09:45:17 AM

Title: How to get part file name from amuleweb PHP during donwload?
Post by: dvt on December 05, 2008, 09:45:17 AM
Here is my code

      $downloads = amule_load_vars("downloads");
      foreach ($downloads as $file)
      {
         echo "<div>".$file->short_name."</div>";
         echo "<div>", CastToXBytes($file->size_done), "&nbsp;(",
               ((float)$file->size_done*100)/((float)$file->size), ")</div>";
      }

The "$file->short_name" gives me whole filename, but is there any construction or way, which will give me temporary file number for exmaple "001.part" during download?
Title: Re: How to get part file name from amuleweb PHP during donwload?
Post by: wuischke on December 05, 2008, 10:03:35 AM
Hi,

Sorry, I'm afraid there's currently no such possibility.