Skip to main content
Question

Change 'created at' file attribute of a large file with Java SDK

  • May 22, 2025
  • 1 reply
  • 2 views

Forum|alt.badge.img

Hi,

Is there a way to change 'created at' file attribute of a large file with Java SDK?

I was able to do it with BoxFolder.uploadFolder(FileUploadParams)

but when I was using BoxFolder.uploadLargeFile(inputStream, fileName, fileSize, fileAttribute), and set'created at', the method doesn't recognize the fileAttribute causing an error.

Map<String, String> fileAttribute = new HashMap<>();
fileAttribute.put("created at", date);
folder.uploadLargeFile(inputStream, fileName, fileSize, fileAttribute);

 

Thank you,

1 reply

Forum|alt.badge.img

Hi there, the attribute is `created_at` with an _ in between created and at.