ECP-VeloC / AXL

Asynchronous Transfer Library
MIT License
2 stars 8 forks source link

Do file list adds during AXL_Dispatch for BB API #45

Closed tonyhutter closed 5 years ago

tonyhutter commented 5 years ago

The BB API checks to see if the destination path exists at BB_AddFiles() time (analogous to AXL_Add()). This is an issue since the destination paths get mkdir'd in AXL_Dispatch() and thus aren't available yet. This patch holds off on doing our BB_AddFiles() calls until AXL_Dispatch().

Fixes: #44

tonyhutter commented 5 years ago

Rebased on top master