Get path relative to the root task directory
(self, *args)
| 405 | return self.task_path("data", *args) |
| 406 | |
| 407 | def task_path(self, *args): |
| 408 | """ |
| 409 | Get path relative to the root task directory |
| 410 | """ |
| 411 | return os.path.join(settings.MEDIA_ROOT, |
| 412 | assets_directory_path(self.id, self.project.id, ""), |
| 413 | *args) |
| 414 | |
| 415 | def is_asset_available_slow(self, asset): |
| 416 | """ |