If it does happen to be that the files are simply being reported smaller (and not actually being truncated or corrupted), it may be because of the OS the server is running on. ASCII files on *nix will be smaller than they are on Windows, because Windows uses CRLF (\r\n)for newlines, where as *nix uses LF (\n). This causes ASCII files to be slightly smaller on a *nix operating system.
|