2023 Mar 07 3:20 PM
Hello,
I am looking for the solution,
for example I have a file 'file one.jpg' and I want to rename this file as 'file two.ipg'.
rename file one.jpg file two.ipg -> this command is not working
because of space is there in the file name, the FM FTP_COMMAND is not working as expected.
can anyone guide me how to pass the rename command to FM FTP_COMMAND.
Thanks,
Namdev
2023 Mar 07 3:27 PM
Did you tried with double quotes like this?
rename "file one.jpg" "file two.ipg"
2023 Mar 07 3:27 PM
Did you tried with double quotes like this?
rename "file one.jpg" "file two.ipg"
2023 Mar 07 3:50 PM
Hello,
did you try putting the filenames in double quotes?
Kind regards
Jan
2024 May 17 10:10 AM
Please help.
This is my code.
CALL FUNCTION FTP_COMMAND
EXPORTING
handle = w_hdl
command = p_lv_cmd
TABLES
data = it_result
EXCEPTIONS
tcpip_error = 1
command_error = 2
data_error = 3
OTHERS = 4.
What i have to pass in parameter command = p_lv_cmd as i am receiving XML file here
2024 May 17 1:13 PM