Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
412 views
in Technique[技术] by (71.8m points)

parameters - Batch file Copy using %1 for drag and drop

I tried to make a drag-and-drop batch file.

I have the problem that a file exists but the batch file couldn't find it...

I want to copy .png files (like pict_2013020808172137243.png) to another folder and rename it.

In the path are symbols like _ and spaces, also I don't know how to make multi-drag-and-drop to make the same function (rename and add to .zip).

I tried this but with no result :(

@ECHO OFF
ECHO %1
COPY "%1" "%CD%est" /Y /S 
REN "%CD%mob*.png" "%CD%estest.png"
7za u -tzip "%appdata%.virtopack.zip" "test" -r
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Drag & drop is badly implemented for batch files.
The names are quoted, if a space is present, but not if a special character is found, like &,;^

For spaces only in your filenames, you need to change your code only a bit.

@ECHO OFF
ECHO "%~1"
COPY "%~1" "%CD%est" /Y /S 
MOVE "%CD%mob*.png" "%CD%estest.png"
7za u -tzip "%appdata%.virtopack.zip" "test" -r

%~1 expands always to an unquoted version, so can always quote them in a safe way.

"c:Docs and sets" -> %~1 -> c:Docs and sets -> "%~1" -> "c:Docs and sets"
c:Programs -> %~1 -> c:Programs -> "%~1" -> "c:Programs"

For more details read Drag and drop batch file for multiple files?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...