Home » Networking » Net_FTP » Bug #6806
Allow recursive up-/download with only adding newer files
Details
| Request #6806 | Allow recursive up-/download with only adding newer files |
|---|---|
| Submitted | 2006-02-17 09:45 UTC |
| From | francois at upian dot com |
| Assigned | jorrit |
| Status | Closed |
| Package | Net_FTP |
| PHP Version | 5.1.2 |
| OS | Windows, Linux |
| Roadmaps | 1.4.0a2 |
Comments
[2006-02-17 09:45 UTC] francois at upian dot com
Description:
------------
When fetching a whole directory whith getRecursive($remotepath, $localpath, $overwrite = false), the process stop when the function found an existing file that may not be overwritten.
It's because line 1221, the get() function send an exception instead of just saying all it's ok.
I replaced, this line with a "return true" and the script now works as expected. In my case, i just wanted to retrieve the new files and that's was not possible with current behaviour.