开发者

nant tasks to copy zip folder from one machine to other

开发者 https://www.devze.com 2023-01-30 04:23 出处:网络
How do i copy a zip folder fro开发者_如何学编程m my local machine to a server on same domain using nant scriptUse the nant copy task.

How do i copy a zip folder fro开发者_如何学编程m my local machine to a server on same domain using nant script


Use the nant copy task.

<copy 
    file="myfile.zip"
    tofile="\\servername\folder\myfile.zip"
    inputencoding="latin1"
    outputencoding="utf-8" />
0

精彩评论

暂无评论...
验证码 换一张
取 消