Reputation: 209
Inside my console application I have to download some images and save it under /web/images , but it said directory doesn't exist. If I inside web application I can access /web folder normally.
Please help!!!
Upvotes: 1
Views: 969
Reputation: 5867
You can add aliases
property in to your console application config in your case config/console.php:
'aliases' => [
'@webimages' => dirname(__DIR__) . DIRECTORY_SEPARATOR '..' . DIRECTORY_SEPARATOR . 'web' . DIRECTORY_SEPARATOR . 'images',
]
And then in your console application code call Yii::getAlias('@webimages')
to get path to your web directory.
Upvotes: 2