You can simply do it with PSPad scripting. There is several commands for PSPad
FTP handling. It's easy to make script with all favourite FTP paths or directly
open FTP files.

small sample:

cite:
--------------------------------------------------------------------------------
sub OpenFTPFile
  set obj = NewEditor()
  ftpConnect("FTP_server")
  ftpDownloadFile "/public_html/www/page/file.php", "C:\Temp\file.php"
  obj.openFile("C:\Temp\file.php")
end sub

initialization to create menu items
sub Init
  addMenuItem "&Open file from FTP","", "OpenFTPFile"
end sub 
--------------------------------------------------------------------------------


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

Odpovedet emailem