I am executing the following sequence of code :
WRITE_MODE = "w"
_output_file = open(path_output_ , WRITE_MODE)
_output_file.write(_out_line_file) : Executed for about 3000 times
_output_file.close()
There are no errors/exceptions during execution.
However, no file is generated at path_output_ .
path_output_ : not a local path but remote filer path and there is considerable amount of latency in accessing this path.
Can someone help here ?