Re: How to avoid file size changes?
Why is that...
...that type of difference in size is because of line ending conversion. You likely have Windows on your computer & are connecting to a Linux server. Windows's default line ending is CR+LF (carrage return, line feed), Linux is LF...(Mac is CR, if anyone cares)...so that's why the file size changes, WinSCP is converting the line endings for the target system. So that means there were 810 line endings in index.html when you transferred it!
...and how I can I avoid this?
...well, as he said, you can force binary transfer mode, which will stop converting line endings...but you might wanna just leave it as is, cuz it's already "doing the right thing". It wouldn't hurt to transfer a few files binary & make sure they still work on the other side (index.html & simple files like that should be fine). Linux can probably handle Windows line endings, it just doesn't want too (in some cases). I kinda like the smaller files on Linux, saves web-host space! The other solution is to use Notepad2 & create files with Linux line endings, even on Windows, then they are smaller all the time.