create_file_stream_wrapper method

create_file_stream_wrapper

Creates FileStream with the specified path and creation mode.

def create_file_stream_wrapper(self, file_name, file_mode):
    ...
ParameterTypeDescription
file_namestr
file_modeSystem.IO.FileMode

create_file_stream_wrapper

Creates FileStream with the specified path, creation mode, and read/write permission.

def create_file_stream_wrapper(self, file_name, file_mode, file_access):
    ...
ParameterTypeDescription
file_namestr
file_modeSystem.IO.FileMode
file_accessSystem.IO.FileAccess

See Also