My GAE application should upload several files to another server (with urlfetch usage).
How to implement this with tasks with assumption that at the end of last task completion
The code you show won't work - the tasks you're starting aren't in the same local scope as the counter, and may not even be on the same machine. You could use a datastore-based counter as @splix suggests, but this looks like a case where the Pipeline library would be ideally suited.