English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

suppose i have a file 1.xls in c:\
and i want to paste in all folders starting with xc_
like xc_cad,xc_gad,xc_acad etc etc....
is it possible to do it using DOS prompt in one go?
or is it possible to do it using some other method

2007-03-19 10:35:07 · 1 answers · asked by kAkashi 2 in Computers & Internet Other - Computers

1 answers

not pretty but quick, use a batch script:
open notepad and type
@echo off
copy C:\1.xls c:\xc_cad\1.xls
copy C:\1.xls c:\xc_gad\1.xls
copy C:\1.xls c:\xc_acad\1.xls

now save the file as cp1.bat

run it and it does all the commands you typed in sequence

2007-03-19 10:52:20 · answer #1 · answered by BigJohnny 4 · 0 0

fedest.com, questions and answers