Visicom Media Softwares order company francais
 
Your current settings may prevent you from accessing all the features of this site (err. 1). Please see our site requirements.
 

Home/ Products/ AceFTP Pro/ Support/

Downloads
Free trial version
Updates
Order
Upgrade
Feedback
We are eager to hear from you. Send us your comments and suggestions >
Product Highlights
AceHTML 6 Pro
AceHTML 6 Pro is a highly effective tool that allows you to build and manage professional Web sites with ease, control, and efficiency.
Learn more
Banners
Share your satisfaction with AceFTP software by telling your visitors.
Place a banner on your Web page.
Partner Sites
- Web Templates
- Turnkey Websites
- Royalty Free Stock Photos
 
Tutorial: Example of script for the AceFTP scheduler

 Example 1: Copy files

Action: Copy all files from a folder "fiction" on the server to a folder "teststorage" on the computer.

Script:
ChangeToFolderR(yoursite.com/fiction/)
ChangeToFolderL(C:\perso\teststorage)
CopyToLeft(*)
 Example 2: Create folder and copy files

Action: Create a folder "test" on the server and copy all files from a folder "testclient" on the computer to the newly folder created on the server

Script:
CreateFolderR(yoursite.com/fiction/test)
OpenLocalViewL(C:\perso\testclient)
CopyToRight(*)
 Example 3: example 1 and example 2 combined
Script:
ChangeToFolderR(yoursite.com/fiction/)
ChangeToFolderL(C:\perso\teststorage)
CopyToLeft(*)
CreateFolderR(yoursite.com/fiction/test)
OpenLocalViewL(C:\perso\testclient)
CopyToRight(*)
 Example 4: Copy a folder

Action: Copy all files in folder "fiction" from the folder "Data" on the computer, to the existing folder "Datatest" on the server.

Script:
OpenLocalViewL(C:\Data)
ChangeToFolderR(/Datatest/)
CopyToRight(fiction)