How do I create a . bat file through a . bat file?

Asked

Viewed 350 times

-1

How do I create a . bat file through a . bat file? Or any file?

I’m creating a type of game and it has to create a folder and inside that folder has to have a file. bat or any file, just can’t be . txt.

2 answers

3


echo qualquercoisa > qualquerarquivo.bat

1

@echo off
::Gerando outro arquivo bat a partir deste
echo  Gerando arquivo NovoBat.bat, Aguarde.
timeout /t 2 >nul
echo @echo off >NovoBat.bat
echo Title Novo .Bat Gerado Com Sucesso>>NovoBat.bat
echo ::envia uma mensagem ao usuario>>NovoBat.bat
echo msg /w /time:5 %username% "Mensagem de Teste. Aguarde 5 Segundos.">>NovoBat.bat
timeout /t 1 >nul
if exist "NovoBat.bat" (Echo Arquivo Criado.) else Echo Erro! Algo deu errado.
pause >nul

Browser other questions tagged

You are not signed in. Login or sign up in order to post.