You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have to support special chars like "äüö" in file names. But after the upload via SFTPGo (ftp) it looks like this in SFTPGo web UI:
Also on unix level i see the charset issue:
On unix level I found the solution to convert the filename into utf-8 charset via iconv command. for f in *.pdf; do mv "$f" "$(echo "$f" | iconv -f latin1 -t utf-8)"; done
In my opinion this should be the command for SFTPGo to be executed for converting the uploaded file name: /bin/mv "{{FsPath}}" "$(echo "{{FsPath}}" | /usr/bin/iconv -f latin1 -t utf-8)"
Here is my command I tried to setup:
In SFTPGo logs i only see that it runs into "exit status 1":
support requestrequest for free support. Check out our support policy
1 participant
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,
I have to support special chars like "äüö" in file names. But after the upload via SFTPGo (ftp) it looks like this in SFTPGo web UI:
Also on unix level i see the charset issue:
On unix level I found the solution to convert the filename into utf-8 charset via iconv command.
for f in *.pdf; do mv "$f" "$(echo "$f" | iconv -f latin1 -t utf-8)"; done
In my opinion this should be the command for SFTPGo to be executed for converting the uploaded file name:
/bin/mv "{{FsPath}}" "$(echo "{{FsPath}}" | /usr/bin/iconv -f latin1 -t utf-8)"
Here is my command I tried to setup:
In SFTPGo logs i only see that it runs into "exit status 1":
Can someone help me please?
Thanks and kind regards
Beta Was this translation helpful? Give feedback.
All reactions