Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Where in here can I type the directory I am trying to browse.
ADIR(MyArray, "c:\foxpro\data\file.*")
ADIR(MyArray, "c:\foxpro\data\*.*")
FOR FileCntr = 1 to mnFileCount
mcSourceFile = Files(FileCntr,1)
<Do Whatever To mcSourceFile>
ENDFOR
COPY FILE (mcSourceFile) TO <mcDestination>
IF FILE (mcDestination)
ERASE (mcSourceFile)
ENDIF
IF ADIR(laFiles, "D:\Testfiles\Incoming\*.*") > 0
ASORT(laFiles,3)
lcFileSource = [D:\Testfiles\Incoming\]+laFiles[1,1]
lcFileTarget = [D:\Temp\FilesBack\] +laFiles[1,1]
RENAME (lcFileSource) TO (lcFileTarget)
ENDIF
lcRequiredFile = ;
MyArray(ALEN(MyArray, 1), 1)
ASORT(laFiles,3,-1,1)