Hi Xavier,
What is your question exactly?
If you are wondering which file attributes are available to an FTP client, see the description of 'ls' from ftp(1):
ls [remote-directory] [local-file]
Write a listing of remote-directory to local-file. The listing includes any system-dependent information that the server chooses to include; for example, most UNIX systems produce output from the command ls -l (see also nlist). If neither remote-directory nor local-file is specified, list the remote working directory. If globbing is enabled, globbing metacharacters are expanded.
In other words, your client sees whichever attributes the FTP server allows it to see. However, this doesn't mean that your client reveals all those attributes to the end-user.
To get an idea of what different clients choose to display, open up a command line and manually 'ftp' to your server. Then issue 'ls'. Now FTP via Internet Explorer and compare results. Notice that, for instance, even though your server transmits each file's user and group, IE chooses not to display these data.
As a general rule, you are better off using a true FTP client (e.g. 'ftp', FileZilla, WS-FTP, CuteFTP, etc.) instead of a web browser.
Also notice that in IE, you can move attribute columns around by clicking on and dragging their headers.
PCS