transfer_file.xys 744 B

1234567891011121314151617181920212223
  1. /*********************
  2. @Author : liuyuqi
  3. @Contact : liuyuqi.gov@msn.cn
  4. @Time : 2020/04/26 17:43:35
  5. @Version : 1.0
  6. @License : (C)Copyright 2019 liuyuqi.
  7. @Desc : 配合 qrcp,mobile/pc 互传文件
  8. *********************/
  9. "1. Receive Phone File..."
  10. run "D:\opt\qrcp\qrcp.exe receive --output=""<curpath>"""
  11. "2. Upload File to Phone..."
  12. $flist= "";
  13. if (get("CountSelected") != 0) {
  14. foreach($item,get("SelectedItemsPathNames"),"<crlf>"){
  15. $flist=$flist . $item." ";
  16. }
  17. run "D:\opt\qrcp\qrcp.exe $flist";
  18. }else{
  19. msg "please choose some files!"
  20. }
  21. "3. Downlaod file..."
  22. $a = input("Enter download URL", , , "m");
  23. download $a