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
Problem: When I have a file with a longer filename (around 200 characters) deeper in directories it used the whole path as a temp name of a file. 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 - https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html so there is no reason to not accept this file to upload.
Solution: do not use the full depth of filename as a temporary name.
The text was updated successfully, but these errors were encountered:
Problem: When I have a file with a longer filename (around 200 characters) deeper in directories it used the whole path as a temp name of a file. 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 - https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingMetadata.html so there is no reason to not accept this file to upload.Solution: do not use the full depth of filename as a temporary name.
The text was updated successfully, but these errors were encountered: