需要使用ant在远程服务器中创建一个文件夹
使用ant scp我可以将文件从本地系统(windows)复制到服务器(linux)。所以我需要的是我想使用ant在linux系统中的指定目录按系统日期创建一个文件夹并将文件复制到创建的文件夹..
这是我的ant脚本:
<sshexec host="hostname:22" username="****" trust="true"
password="fcubs"
command="mkdir $/home/desktop/<folder to be creted here>"/>
<scp todir="username@hostname:/home/desktop" password="*****" trust="true">
<fileset dir="D:\kkk"/>
</scp>
请帮助我 提前致谢
using ant scp i can able to copy a file from local system(windows) to server(linux).so what i need is i want to create a folder by the system date at specified directory in linux system using ant and copy the file to the folder which created..
this is my ant script:
<sshexec host="hostname:22" username="****" trust="true"
password="fcubs"
command="mkdir $/home/desktop/<folder to be creted here>"/>
<scp todir="username@hostname:/home/desktop" password="*****" trust="true">
<fileset dir="D:\kkk"/>
</scp>
pls help me
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用这样的Linux命令来创建目录:
它将在目录/path/to/specified/dir中创建目录(例如)“Nov-14-2012_17:41:02”,并将cd到它。
执行此命令后,您只需将文件复制到该目录即可。
you can use such linux command which creates directory:
it will create dir (for example) "Nov-14-2012_17:41:02" in the dir /path/to/specified/dir and will cd to it.
after executing this command you can simply copy your file to the directory.