can i transfer a file from FTP to file cabinet if ...
# suitescript
l
can i transfer a file from FTP to file cabinet if its more than 10MB?
m
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
thats sooo annoying 😕
b
you can save it as long as you dont read it
l
I dont need to read it, i just need to store in file cabinet.
m
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
anything involving contents is limited to 10 mb
you would need to use File.appendLine if you wanted to create your own file bigger than 10 mb
m
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.