1

我需要一个批处理代码,如果我输入一个数字“11”,然后输入一个文本“ss”,那么它应该创建一个文件夹名称为“ 11-ss ”,在该文件夹中我需要 3 个文件夹,分别命名为 1、2、3。

可能吗?

4

2 回答 2

3
mkdir %1-%2\1
mkdir %1-%2\2
mkdir %1-%2\3

将此保存为批处理并调用它
batchfile.bat 11 ss

于 2013-01-18T20:07:56.603 回答
1
@echo off
set /p number=enter the number:
set /p text=enter the text:
md %number%-%text%\1 %number%-%text%\3 %number%-%text%\1  

这是一个交互式解决方案...

于 2013-01-18T22:19:17.547 回答