Network drive not available when the FTP script is scheduled

21st July 2018

As all Windows applications, ScriptFTP supports the use of UNC paths and network drives. You can use the files and folders stored in them as if they were located in hard drive of the machine where ScriptFTP is running. For instance:

 

# Upload to the FTP server all the Excel files stored in the mapped network drive Z
PUTFILE("Z:\the_folder\*.xlsx")
 
# Upload to the FTP server all the Word documents stored in a network share called Reports
# under the computer named ACCOUNTING-PC-1
PUTFILE("\\ACCOUNTING-PC-1\Reports\*.docx")

read more …