14.09.2021, 10:13, "Michael Albinus" <michael.albinus@gmx.de>:

Bad Blue Bull <ibmbull@yandex.ru> writes:

Hi,
 

          OK, thanks

     Do you believe, we shall investigate the ange-ftp case? Honestly,
     the
     combination of FTP and the server hosted on MS Windows doesn't
     sound
     very familiar to me.

 Yes, maybe change of tramp-ftp-method can help?


What else do you want to use here? It's value is "ftp", and Tramp
doesn't implement it itself, but forwards everything to ange-ftp.

There is a trick (undocumented, I believe) to use gio's ftp
implementation in Tramp. But let's keep this for later if needed.
 

 again, I can connect from console with ftp.
 C:\pub is the path for FTP node directory.
 I changed directory list style to "unix" in Internet Information
 Services settings, but it didn't help.


The *Messages* buffer doesn't tell us what's going on. Previously, you
have shown the ange-ftp buffer:

--8<---------------cut here---------------start------------->8---
    ftp> open 192.168.0.141
    Connected to 192.168.0.141 (192.168.0.141).
    220 WIN2K Microsoft FTP Service (Version 5.0).
    ftp> user "anonymous" Turtle Power!
    331 Anonymous access allowed, send identity (e-mail name) as
    password.
    230 Anonymous user logged in.
    ftp> hash
    Hash mark printing on (1024 bytes/hash mark).
    ftp> pwd
    257 "/" is current directory.
    ftp> cd /
    250 CWD command successful.
    ftp> ls -al /tmp/ange-ftpjlDCRq
    227 Entering Passive Mode (192,168,0,141,4,10).
    125 Data connection already open; Transfer starting.
    226 Transfer complete.
    ftp>
--8<---------------cut here---------------end--------------->8---

Could you mimick this in a shell? That is

--8<---------------cut here---------------start------------->8---
# ftp
ftp> open 192.168.0.141
Name (xxx): anonymous
ftp> hash
ftp> pwd
ftp> cd /
ftp> ls -al /tmp/foo
--8<---------------cut here---------------end--------------->8---

Please show the dialogue, and show the contents of /tmp/foo (as
attachment, in order to keep non-ASCII characters).

Best regards, Michael.

--8<---------------cut here---------------start------------->8---
ftp> open 192.168.0.141
Connected to 192.168.0.141 (192.168.0.141).
220 WIN2K Microsoft FTP Service (Version 5.0).
Name (192.168.0.141:nr): anonymous
331 Anonymous access allowed, send identity (e-mail name) as password.
Password:
230 Anonymous user logged in.
Remote system type is Windows_NT.
ftp> hash
Hash mark printing on (1024 bytes/hash mark).
ftp> pwd
257 "/" is current directory.
ftp> cd /
250 CWD command successful.
ftp> la -al /tmp/foo
?Invalid command
ftp> ls -al /tmp/foo
output to local-file: /tmp/foo? yes
227 Entering Passive Mode (192,168,0,141,4,9).
125 Data connection already open; Transfer starting.
226 Transfer complete.
ftp> close
221
--8<---------------cut here---------------end--------------->8---
/tmp/foo is empty, just like ls output is void after I connect, I have to do 'cd pub' to reach that directory (C:\pub) designated for ftp communications.