can i transfer a file from FTP to file cabinet if its more than 10MB?
m
Marvin
08/15/2022, 9:00 PM
Nope. Hopefully it's file you can chunk if you want to store it. It's a frustrating limitation.
I don't even think you can create a file using N/file that exceeds 10MB even if you aren't going to save it.
l
Livio
08/15/2022, 9:01 PM
thats sooo annoying 😕
b
battk
08/15/2022, 9:01 PM
you can save it as long as you dont read it
l
Livio
08/15/2022, 9:02 PM
I dont need to read it, i just need to store in file cabinet.
m
Marvin
08/15/2022, 9:04 PM
I have run into errors just trying to create files greater than 10MB even though they were going to be SFTP'd to a server.
b
battk
08/15/2022, 9:04 PM
anything involving contents is limited to 10 mb
battk
08/15/2022, 9:06 PM
you would need to use File.appendLine if you wanted to create your own file bigger than 10 mb
m
Marvin
08/15/2022, 9:07 PM
Thanks for the workaround. It wouldn't have worked for me since I was using a third party parser, but I may have a case to use it sometime.