Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
助けが必要:
DOSでバッチファイルを作成し(コマンドプロンプトで実行)、50個のフォルダー(folder1、folder2、folder3など)を作成し、それぞれにサブフォルダー(filesin、filesout)を作成します。
よろしく
for /L %%g in (1,1,50) do ( md folder%%g md folder%%g\filesin md folder%%g\filesout )