Please provide the content that needs to be translated. Currently, the provided content is mostly in Chinese with some batch script code. Please clarify the specific part that needs to be translated. If it's the entire content, then it is as follows:
Please see the following:
The content in guanlian.bat:
@echo off
assoc.rar=rarfile
ftype rarfile="%programfiles%\winrar\jieyarar.bat" "%1" "%*"
assoc.zip=zipfile
ftype zipfile="%programfiles%\winrar\jieyazip.bat" "%1" "%*"
@echo off
title 正在解压....
echo 正在解压,如果文件较大,可能需要一点时间.
"%programfiles%\winrar\rar" x -y "*.rar" E:\临时下载存档区 >nul 2>nul
exit
This is the content in jieyarar.bat
@echo off
title 正在解压....
echo 正在解压,如果文件较大,可能需要一点时间.
"%programfiles%\winrar\rar" x -y "*.rar" E:\临时下载存档区 >nul 2>nul
exit
This is the content in jieyazip.bat
@echo off
title 正在解压....
echo 正在解压,如果文件较大,可能需要一点时间.
"%programfiles%\winrar\winrar" x -y "*.zip" E:\临时下载存档区 >nul 2>nul
exit
I originally only wanted to decompress the file that the user clicked, but I don't know how to get that variable. I tried %0 and %1
Neither worked, so I had to use *.zip and *.rar instead.
Now the problem is that every time I decompress a file, it decompresses all RAR or ZIP files in the current directory.
How can I only decompress the currently clicked file?
Please see the following:
The content in guanlian.bat:
@echo off
assoc.rar=rarfile
ftype rarfile="%programfiles%\winrar\jieyarar.bat" "%1" "%*"
assoc.zip=zipfile
ftype zipfile="%programfiles%\winrar\jieyazip.bat" "%1" "%*"
@echo off
title 正在解压....
echo 正在解压,如果文件较大,可能需要一点时间.
"%programfiles%\winrar\rar" x -y "*.rar" E:\临时下载存档区 >nul 2>nul
exit
This is the content in jieyarar.bat
@echo off
title 正在解压....
echo 正在解压,如果文件较大,可能需要一点时间.
"%programfiles%\winrar\rar" x -y "*.rar" E:\临时下载存档区 >nul 2>nul
exit
This is the content in jieyazip.bat
@echo off
title 正在解压....
echo 正在解压,如果文件较大,可能需要一点时间.
"%programfiles%\winrar\winrar" x -y "*.zip" E:\临时下载存档区 >nul 2>nul
exit
I originally only wanted to decompress the file that the user clicked, but I don't know how to get that variable. I tried %0 and %1
Neither worked, so I had to use *.zip and *.rar instead.
Now the problem is that every time I decompress a file, it decompresses all RAR or ZIP files in the current directory.
How can I only decompress the currently clicked file?

