Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to figure out how to autoftp with Filezilla. Are there any other programs that do this right off the bat?

share|improve this question
1  
Are you trying to create a FTP mount? What OS? – SomeKittens Aug 3 '12 at 21:24
1  
Do you want to copy files from FileZilla to a server on a scheduled basis? Or from the server to FileZilla? Or do you want to just do it once e.g. on start up? What platform would you be running this on (Windows, Mac etc)? – halfer Aug 3 '12 at 21:26
2  
Is this a programming question? – taz Aug 3 '12 at 21:27
not sure ftp mount is, but I'm just trying to have filezilla automatically upload files that I'm editing, and when saving the files, filezilla just auto uploads them. im in windows 7 – user1549397 Aug 3 '12 at 21:27
1  
Write a script/program that scans your source directory(s) every x minutes and use an FTP library to upload when changes are detected. I'd be surprised if something like this doesn't already exist, and according to the answer below Notepad++ has this functionality. – taz Aug 3 '12 at 21:42

2 Answers

up vote 2 down vote accepted

If by "autoftp" you mean "update the file on the server whenever I save it" and you're working with code, then I'd recommend the wonderful Notepad++

share|improve this answer
1  
how exactly do you do this with notepad? can you provide a quick tutorial? – user1549397 Aug 3 '12 at 21:38
I'd like to know this also. I see that NPP has an FTP plugin (sourceforge.net/projects/nppftp) but I can't find anything about automatically uploading on save. That would be really useful to me. – taz Aug 3 '12 at 21:52
In the NP++ toolbar, there should be an icon of a folder with a chain on the bottom left. That's the FTP – SomeKittens Aug 4 '12 at 3:43
1  
NPPftp will do exactly what you want. – ViperCode Aug 12 '12 at 10:00

Notepad++ certainly is wonderful for this particular function and it even saves a cache of the whatever has been accessed and modified from the remote server.

The downside however (for me) is that Notepad++ will not auto-upload preprocessed CSS files like .scss or .less. I tried actually opening the resulting .css files in Notepad++ to mimic the act of editing them, but that still puts an extra step in the process. I have to click over to the tabs and manually save them (after the 'your file as changed prompt').

Currently, after I make changes, I click over to FZ and upload the files manually.

share|improve this answer
1  
This is EXACTLY what I came here looking for an answer to... anyone have an easier way to do this yet? – BillyNair Apr 21 at 14:14
1  
Since this comment, I have been using WinSCP which allows a user to select files and folders to "watch" for changes. After .SCSS compresses and the modify date changes, WinSCP uploads to the remote server. winscp.net/eng/docs/task_synchronize_full#synchronization_mode – jacobross85 Apr 21 at 18:13
1  
Just got it, tested it, STOKED!! – BillyNair Apr 22 at 9:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.