NeoBookFM/FTP v1.4 Update Released

Questions about our File Management and Internet FTP plug-in
Locked
Neosoft Support
NeoSoft Team
Posts: 5628
Joined: Thu Mar 31, 2005 10:48 pm
Location: Oregon, USA
Contact:

NeoBookFM/FTP v1.4 Update Released

Post by Neosoft Support »

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.
NeoSoft Support
mishem
Posts: 581
Joined: Mon Oct 08, 2012 1:51 pm

Re: NeoBookFM/FTP v1.4 Update Released

Post by mishem »

Code: Select all

SystemInfo "%APPDATA%" "[Temp]"
fmConnectLocal "COPY" "InitialPath=[Temp]"
Temp=C:\Users\mishe\AppData\Roaming
COPY.CurrentDir=C:\Users\mishe\Desktop

Code: Select all

SetVar "[Temp]" "[TempDir]"
fmConnectLocal "COPY" "InitialPath=[Temp]"
Temp=C:\Users\mishe\AppData\Local\Temp\
COPY.CurrentDir=C:\Users\mishe\Desktop

Code: Select all

SetVar "[Temp]" "C:\Program Files (x86)\NeoBook 5"
fmConnectLocal "COPY" "InitialPath=[Temp]"
Temp=C:\Program Files (x86)\NeoBook 5
COPY.CurrentDir=C:\Program Files (x86)\NeoBook 5
Neosoft Support
NeoSoft Team
Posts: 5628
Joined: Thu Mar 31, 2005 10:48 pm
Location: Oregon, USA
Contact:

Re: NeoBookFM/FTP v1.4 Update Released

Post by Neosoft Support »

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]"
NeoSoft Support
mishem
Posts: 581
Joined: Mon Oct 08, 2012 1:51 pm

Re: NeoBookFM/FTP v1.4 Update Released

Post by mishem »

Thank you. It was necessary to think about the hidden folders.
Locked