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
Given a file with a long filename (around 200 characters) deeper in directories it uses the whole path as a file temporary name. Unfortunately, UNIX filesystems support only files up to 255 characters, so the upload will fail with exception File name too long. S3 systems support file names up to 1024 characters as can be seen here - so there is no reason to not accept this file to upload.
Tasks
The following tasks will need to be carried out:
When creating a temp file in S3SeekableByteChannel, do not use the full depth of filename as a temporary name, but just the path file name.
Task Description
Given a file with a long filename (around 200 characters) deeper in directories it uses the whole path as a file temporary name. Unfortunately, UNIX filesystems support only files up to 255 characters, so the upload will fail with exception
File name too long
. S3 systems support file names up to 1024 characters as can be seen here - so there is no reason to not accept this file to upload.Tasks
The following tasks will need to be carried out:
S3SeekableByteChannel
, do not use the full depth of filename as a temporary name, but just the path file name.Useful Links
Help
The text was updated successfully, but these errors were encountered: