Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

3
  • Good answer, though I would put some emphasis on avoiding re-inventing the wheel and especially creating your own format where at all possible. Commented Sep 18, 2015 at 16:50
  • Thank you for the response! I believe I get it. So FTP is just a different type of protocol just as TCP and UDP are different protocols? So even though I am making something for basic "file transfer" that doesn't actually mean I am using or need to use the "File Transfer Protocol", correct? Commented Sep 18, 2015 at 16:56
  • @Shawn kinda: there's a layering of protocols called the OSI model: FTP is part of the application layer and it's built on top of TCP which is part of the transport layer. When you use FTP, you're using TCP as well. But you otherwise have it! Commented Sep 18, 2015 at 17:07