This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Felype's profile picture

Does anyone know a FTP Program?

Started by Felype, 07 January 2014 - 07:55 PM
Felype #1
Posted 07 January 2014 - 08:55 PM
I searched trough the forum and i dont find a working FTP program,do u know a FTP Program that works?
Bomb Bloke #2
Posted 08 January 2014 - 02:15 AM
Windows Explorer is a serviceable one, if I just want to do a quick transfer I'll just use that.

If I want something with a few more features (eg the ability to resume transfers and automatically skip over unchanged files), I usually go with WS_FTP. Though my copy is pretty old by now - I use it because I dislike bloat, can't speak for what it's like now.
oeed #3
Posted 08 January 2014 - 02:36 AM
First of all, I presume you're talking about a desktop program. If you're talking about a ComputerCraft one, I wouldn't keep your hopes up. I think, due to the way the HTTP API is made (and the fact that it's HTTP) you can't really FTP. I might consider making one using an HTTP based proxy, now I think of it though.

For Mac, Transmit's pretty good. The built in Finder one's also reasonable and it mounts it too.

Unfortunately, pretty much all the Windows FTP clients look horrendous and are a pain to use, so I guess my I can only recommend this thing :P/>

If you're using Sublime Text 2 I highly recommend Sublime SFTP which I use all the time, and as a bonus it has upload on save.

An in game FTP client's not a bad idea though. I question how useful it would be, however.
robhol #4
Posted 08 January 2014 - 02:36 AM
Platform? Do you mean inside CC? Because that isn't possible without external plugins.
6677 #5
Posted 08 January 2014 - 05:21 AM
Filezilla, WinSCP.
Felype #6
Posted 08 January 2014 - 01:00 PM
Ehh i want a Computercraft program and i already seen some Ftps programs.
robhol #7
Posted 08 January 2014 - 01:14 PM
So.. use those? What are they, anyway?
Felype #8
Posted 08 January 2014 - 02:04 PM
But they have some bugs.
D3matt #9
Posted 08 January 2014 - 10:38 PM
Google knows. Why ask here, and why so vaguely?
oeed #10
Posted 08 January 2014 - 11:14 PM
Google knows. Why ask here, and why so vaguely?

Ehh i want a Computercraft program and i already seen some Ftps programs.

He's wanting a ComputerCraft program.

Yea, Felype the only way you could do this, which wouldn't actually be that hard would be to set up a HTTP based proxy in PHP or something. I'm sure there are PHP FTP modules available. Security is an issue, however. I don't know how useful it'd be though really.
Lyqyd #11
Posted 09 January 2014 - 12:21 AM
I'm pretty sure he's asking about file transfer programs for use entirely within ComputerCraft. I don't know of any good ones, but nsh does allow file transfers if the get and put programs are present on the server. It's not really ftp at all, though.
surferpup #12
Posted 11 January 2014 - 02:55 AM
If he is anything like I was when I started hunting and pecking around ComputerCraft, he may be looking for a way to get programs into his computer. If that is the case, he should be using pastebin. It is probably the simplest way to get started using other's programs or to save your own programs for editing/sharing. From the CraftOS prompt, typing in

pastebin get <pastebincode> <filename to save on computer>
will retrieve a paste bin file into the computer. Typing pastebin put <filename> will save the program out to pastebin for editing or sharing and give you back a pastebin code for retrieval later (write it down).

Otherwise, he can ssh to the server folder if it is available to him. In the minecraft folder, the computer craft programs are accessible to me through the number of the computer. For example, if I have computer ID 26, I can save programs to
<minecraft folder>/world/computercraft/26/<program name>

At least those are the ways I have come to using something like FTP access for writing programs. If he truly wants FTP functionality within ComputerCraft, I am at a loss.
Edited on 11 January 2014 - 03:47 PM
lukeplechaty #13
Posted 11 January 2014 - 12:44 PM
you can try my one http://pastebin.com/PXNNsVVx it works all in one program run it to get files eg(ftp) run it with the pc ID you are sending it to and file name at the end eg(ftp 1 file)
Felype #14
Posted 17 January 2014 - 07:31 PM
you can try my one http://pastebin.com/PXNNsVVx it works all in one program run it to get files eg(ftp) run it with the pc ID you are sending it to and file name at the end eg(ftp 1 file)
Not perfect but i liked it i will probably use it,but i want a FTP program that have a program for the server and for the client.