NeoSoft has released NeoBookFM/FTP version 1.4. This update can be downloaded from:
http://www.neosoftware.com/fmftpdownload.html
This update contains the following:
Fixes
Fixed a problem that prevented the ListInactiveFontColor and TreeInactiveFontColor properties of the fmSetFileBrowserProperties action from working correctly.
Modified how lists of files are requested from FTP servers. The previous version of FM/FTP executed the LIST command with an extra parameter "-a" which is supposed to tell the server to include hidden files (like .htaccess) in the list of files. This works fine with Unix-based servers, but apparently isn't supported by some Windows-based servers. Technically, there should be no hidden files unless the server is configured to hide them intentionally.
NeoBookFM/FTP v1.4 Update Released
-
- NeoSoft Team
- Posts: 5628
- Joined: Thu Mar 31, 2005 10:48 pm
- Location: Oregon, USA
- Contact:
NeoBookFM/FTP v1.4 Update Released
NeoSoft Support
Re: NeoBookFM/FTP v1.4 Update Released
Code: Select all
SystemInfo "%APPDATA%" "[Temp]"
fmConnectLocal "COPY" "InitialPath=[Temp]"
COPY.CurrentDir=C:\Users\mishe\Desktop
Code: Select all
SetVar "[Temp]" "[TempDir]"
fmConnectLocal "COPY" "InitialPath=[Temp]"
COPY.CurrentDir=C:\Users\mishe\Desktop
Code: Select all
SetVar "[Temp]" "C:\Program Files (x86)\NeoBook 5"
fmConnectLocal "COPY" "InitialPath=[Temp]"
COPY.CurrentDir=C:\Program Files (x86)\NeoBook 5
-
- NeoSoft Team
- Posts: 5628
- Joined: Thu Mar 31, 2005 10:48 pm
- Location: Oregon, USA
- Contact:
Re: NeoBookFM/FTP v1.4 Update Released
You can't use the temp folder as the initial path because Windows won't allow us to navigate to it because it's hidden. However, FM/FTP includes an option to view hidden folder, but you can't turn it on until after the connection has been made. Here's how to make it work:
SystemInfo "%APPDATA%" "[Temp]"
fmConnectLocal "COPY" ""
fmSetFileBrowserProperties "COPY" "ShowHiddenFiles=Yes"
fmChangeDir "COPY" "[Temp]"
SystemInfo "%APPDATA%" "[Temp]"
fmConnectLocal "COPY" ""
fmSetFileBrowserProperties "COPY" "ShowHiddenFiles=Yes"
fmChangeDir "COPY" "[Temp]"
NeoSoft Support
Re: NeoBookFM/FTP v1.4 Update Released
Thank you. It was necessary to think about the hidden folders.