Skip to content

Can't convert to zip #37

Open
Open
@AmazingMech2418

Description

@AmazingMech2418

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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions