I am sorry, save file/desktop doesn't allow to restore FTP session yet. 
But you can easy write simple script and open all your files from FTP with one
click.


const module_name  = "FTPfiles"         'this name must be unique !!!
const module_ver   = "0.001a"            'version

sub OpenFTPFile
  ftpConnect("connection_name")
' file1
  set obj = NewEditor()
  ftpDownloadFile "/public_html/www/page/page1.php", "C:\Temp\page1.php"
  obj.openFile("C:\Temp\page1.php")
' file2
  set obj = NewEditor()
  ftpDownloadFile "/public_html/www/page/page2.php", "C:\Temp\page2.php"
  obj.openFile("C:\Temp\page2.php")
end sub

sub Init
  addMenuItem "&Open file from FTP","", "OpenFTPFile"
end sub


Save code content as file with VBS extension into .\Script\VBScript subfolder
Modify connection name, path to your files or add another files to the script
>From the Script menu you can now open all your files with one click

-- 
<http://forum.pspad.com/read.php?2,61925,61927>
PSPad freeware editor http://www.pspad.com

Odpovedet emailem