|
FtpRush Developments by Marsup
|
|
Download Rush_cmdline | ||
|
Download KRush | ||
|
|
||
|
Download XRush | ||
|
Download Normal Build Download SSE Build Download SSE2 Build |
||
|
Download Applet |

| How to FXP many times many directories ? Open the "Script Designer" and simply replace the original code with this one, then save the changes with File/Reload. procedure RefreshAndFXPManyTimes(Sender); begin RushApp.UI.Selection.Prepare; if RushApp.UI.Selection.CanFXP and (RushApp.UI.Selection.Count>=1) then for i:=0 to RushApp.UI.Selection.Count-1 do if RushApp.UI.Selection.Items[i].IsFolder then RushApp.UI.Selection.MakeFXPQueue( RushApp.UI.Selection.FtpID, RushApp.UI.Selection.FtpPath, RushApp.UI.Selection.Items[i].Name, RushApp.UI.Selection.TargetFtpID, RushApp.UI.Selection.TargetFtpPath, RushApp.UI.Selection.Items[i].Name, RushApp.UI.Selection.Items[i].Size, RushApp.UI.Selection.Items[i].IsFolder, RushApp.UI.Selection.IsLeftSide, True, RushApp.UI.Selection.FtpName +' to ' + RushApp.UI.Selection.TargetFtpName, 50, '([^\w]*100%[^\w]*)|([^\w]*-\sCOMPLETE\s\)[^\w]*)|([^\w]*-\sCOMPLETE\s-[^\w]*)' ); end; |