检测文件何时下载完毕

时间:2017-11-30 08:08:16

标签: python shell download

我正在使用

从远程服务器下载文件
  

spawn scp

shell脚本中的

命令,一旦完成下载,我想发送给另一个用户。 所以我需要一种方法来检测文件下载的时间。

1 个答案:

答案 0 :(得分:0)

在下载完成之前,您的shell脚本将停在spawn scp。因此,您可以添加其余命令以将文件传输到此语句下方,如下所示: -

spawn scp
# Check the downloaded file is available or not here
# if the file available
# just use ftp/ftps/scp command to transfer to your friend's server
# after a successful transfer exit with 0
# for failure exit with 1