1234567891011121314151617181920212223 |
- "1. Receive Phone File..."
- run "D:\opt\qrcp\qrcp.exe receive --output=""<curpath>"""
- "2. Upload File to Phone..."
- $flist= "";
- if (get("CountSelected") != 0) {
- foreach($item,get("SelectedItemsPathNames"),"<crlf>"){
- $flist=$flist . $item." ";
- }
- run "D:\opt\qrcp\qrcp.exe $flist";
- }else{
- msg "please choose some files!"
- }
- "3. Downlaod file..."
- $a = input("Enter download URL", , , "m");
- download $a
|