怎么创建以下代码中的tpl和template_c目录?
<?php
require('../smarty/Smarty.class.php');//smarty引入
$smarty=new Smarty();//smarty类的实例化
$smarty->left_delimiter="{";//左定界符
$smarty->right_delimiter="}";//右定界符
$smarty->template_dir="tpl";//html模板的地址
$smarty->compile_dir="template_c";//模板编译生成的文件
$smarty->cache_dir="cache";//缓存
$smarty->caching=true;//开启缓存
$smarty->cache_Lifetime=120;//缓存时间?>