Comment #2 on issue 1341 by fran...@gmail.com: New builtin library for file handling
http://code.google.com/p/robotframework/issues/detail?id=1341
Grep File is good option for file content search. And as once I met the problem that trying to use 'Get File' with big file (>8000MB), it cause MemoryError as shown below. P.S Robotframework is 2.7.5 and I'm sure machine has enough free memory (totally 24GB) File "C:\Python27\lib\runpy.py", line 162, in _run_module_as_main "__main__", fname, loader, pkg_name) File "C:\Python27\lib\runpy.py", line 72, in _run_code exec code in run_globals File "C:\Python27\lib\site-packages\robot\run.py", line 434, in <module> run_cli(sys.argv[1:]) File "C:\Python27\lib\site-packages\robot\run.py", line 397, in run_cli RobotFramework().execute_cli(arguments) File "C:\Python27\lib\site-packages\robot\utils\application.py", line 44, in execute_cli rc = self._execute(arguments, options) File "C:\Python27\lib\site-packages\robot\utils\application.py", line 84, in _execute error, details = get_error_details() File "C:\Python27\lib\site-packages\robot\utils\error.py", line 45, in get_error_details details = ErrorDetails() File "C:\Python27\lib\site-packages\robot\utils\error.py", line 58, in ErrorDetails raise exc_value MemoryError --