chhorn soro
chhorn soro

Reputation: 209

Access to Web Folder from Console application Yii2

enter image description hereInside 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

Answers (1)

Tony
Tony

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

Related Questions