El comando xcopy es muy util a la hora de hacer .bat para realizar tareas "nocturnas" , de backup y esas cosas.
Pero tenia el inconviente que siempre pregunta si se quiere crear File or Directory . Como en el ejemplo
Fuente: http://stackoverflow.com/questions/3018289/xcopy-file-rename-suppress-does-xxx-specify-a-file-name-message
Saludos
Adalberto Montanía
Pero tenia el inconviente que siempre pregunta si se quiere crear File or Directory . Como en el ejemplo
xcopy "bin\development\whee.config.example"
"TestConnectionExternal\bin\Debug\whee.config.example"
It prompts me with the following every time:
Para evitar esto podemos decirle con wildcars * EjemploDoes TestConnectionExternal\bin\Debug\whee.config specify a file name or directory name on the target (F = file, D = directory)?
xcopy /y "bin\development\whee.config.example" "TestConnectionExternal\bin\Debug\*"
Con ello ya no pregunta.Fuente: http://stackoverflow.com/questions/3018289/xcopy-file-rename-suppress-does-xxx-specify-a-file-name-message
Saludos
Adalberto Montanía
Comentarios
Publicar un comentario