In The Given Constructor Declaration For Character Based File #597
In the given constructor declaration for character based file operation what does ‘path’ and ‘bool specifies?</p> <pre><code class="language-csharp"> StreamWriter(string path, bool append)</code></pre>
This multiple choice question (MCQ) is related to the book/course
gs gs108 CSharp.
It can also be found in
gs gs108 Console I/O Operations and Stream Classes - Character Stream - Quiz No.1.
In the given constructor declaration for character based file operation what does ‘path’ and ‘bool specifies?
StreamWriter(string path, bool append)
the name of the file to open
specifies the full path of file
if append is true, the file is appended to the end of the existing file
all of the mentioned