使用 Scons 创建空目录
Create empty directory using Scons
我正在尝试将新的空文件夹添加到现有项目中。在 SConscript.3dn
文件中我使用:
Import('env_rcp')
e = env_rcp.Clone()
# another code ...
e.Execute(e.Mkdir('$RUNTIMEDIR/resources'))
在本地构建时我得到 AttributeError: 'SConsEnvironment' object has no attribute 'Mkdir'
我也尝试过 os.Mkdir('$RUNTIMEDIR/resources')
,然后我得到 AttributeError: 'module' object has no attribute 'Mkdir'
。
缺少某些导入,或者我应该以某种方式定义 Mkdir
?在 Scons manual 我没有找到太多帮助
解决方案是:e.Execute(Mkdir('$RUNTIMEDIR/resources'))
我正在尝试将新的空文件夹添加到现有项目中。在 SConscript.3dn
文件中我使用:
Import('env_rcp')
e = env_rcp.Clone()
# another code ...
e.Execute(e.Mkdir('$RUNTIMEDIR/resources'))
在本地构建时我得到 AttributeError: 'SConsEnvironment' object has no attribute 'Mkdir'
我也尝试过 os.Mkdir('$RUNTIMEDIR/resources')
,然后我得到 AttributeError: 'module' object has no attribute 'Mkdir'
。
缺少某些导入,或者我应该以某种方式定义 Mkdir
?在 Scons manual 我没有找到太多帮助
解决方案是:e.Execute(Mkdir('$RUNTIMEDIR/resources'))