如果文件夹不存在,我正在尝试编写批处理脚本来创建文件夹。跟进在线示例,以下是我的脚本。
问题是; 首先pause
有效,然后可能由于语法错误,窗口甚至在到达 second 之前就关闭了pause
,所以我无法真正判断我的脚本的哪一部分是错误的。
谁能告诉我如何防止关闭窗口,以便我可以看到窗口上的内容?
@echo off
:copy theme images over
:designer
echo copying theme images over...
pause
if not exist "%K2DIR%\K2 SmartForms Runtime\Styles\Themes\Sharepoint 2013\rich_text"
(
md "%K2DIR%\K2 SmartForms Runtime\Styles\Themes\Sharepoint 2013\rich_text333"
)
pause