Filesize

Hello,
I have short answer if it is possible to make file which will have more then 4096 B or this limitation is only for write to file ?

      :set line2 ([:tostr (/file get ($filename . $fileindex . ".rsc") contents)])
      /file set ($filename . $fileindex . ".rsc") contents=([:tostr $contents] . "\n" . [:tostr $line2])

because this not work so in my oppinion there is noway to have file bigger than 4096 or is there any possibility how to write data to file where it is file = file + data?

Currently you can’t write more than 4096 B to file from the script.
You can divide data to be written into file in blocks of 4096B and write it to several files.

Thanks so I can only have a files smaller or equal 4096 B. But file sizes could be bigger so is there any possibility because when u export some stats by export command the .txt file is created and this file can have only 4096 B too?

Yes, files can be larger, but limitation is that you can’ t write more than 4096 into file from script

Yes. But dont know why when u export it in my oppinion it can be more than 4096 but from script only 4096 interesting.

that is not a script, that is export command that does that, same way that sniffer can sniff to larger files. Script limitation still stands.