|
The only addition over ASP-FTP is the use of library files to preview the image/text, and a change
in the output design. There were no real innovations for me with this project :(
Like ASP-FTP and Photo Album, the real code is stored in '/aspcode/', with the articles default page
setting up configuration variables, and calling the main subroutine. The code in red, below, is unique
to FTP Explorer.
' Configuration Setup
g_bSupportDir=1 ' Allow sub-directories. If concerned about security, set to zero
g_szGfxPath="/articles/pix/" ' Where the graphics (for file and folder icons) stored. MUST END WITH '/'
g_szRootPath="/articles/Articles/" ' The path must be relative to this directory. MUST END WITH '/'
g_szThis="default.asp" ' Name of this file (usually default.asp). It will be ignored from the dir list
g_bHideExtensions = 1
ExplorerMain
|