You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used a batch file to copy the file, but it won't convert to a zip file. Please allow zip conversions for block "hacking".
Batch file code:
@echo off
title "COPY A FILE"
color 1f
echo Welcome to the file copier!
PAUSE
:top
echo What file do you want to copy?
set /p fileone=
echo What will the new file name be?
set /p filetwo=
more %fileone%>%filetwo%
echo File Copied
PAUSE
echo "Would you like to copy another file? [Y/N]"
set /p choice=
if "%choice%"=="Y" (
goto top
)
if "%choice%"=="N" (
goto end
)
:end
echo Thank you for choosing File Copier to copy your files!
PAUSE
exit
I added the code in case it is a code error for the batch file.
The text was updated successfully, but these errors were encountered:
Sorry, it's none of your bussiness, since it's not related to Scratch Open-Source Project.
Use stackoverflow.
Note that zip is a file, not a folder, and Command Prompt cannot convert zip without 7-zip library or anything like that.
I used a batch file to copy the file, but it won't convert to a zip file. Please allow zip conversions for block "hacking".
Batch file code:
I added the code in case it is a code error for the batch file.
The text was updated successfully, but these errors were encountered: