FStream several ways to open files, easy to use later

Source: Internet
Author: User

FStream Fout;
(1) Open the file as output, if the file does not exist to establish the file, if the file exists to set the length of the file to 0
Fout.open ("D:/1.txt", ofstream::out|ofstream::trunc);//cannot be used | |
if (!fout.is_open ())
{
Return
}


(2) Open the file in the output mode, if there is no file, then generate an empty file, if there is a file, then empty the file, when writing the file is the file pointer to the end of the file
Fout.open ("D:/1.txt", ofstream::out|ofstream::ate);//cannot be used | |
if (!fout.is_open ())
{
Return
}


(3) Open the file in the output mode, if there is no file, then generate an empty file, if there is a file, then append at the end of the file. When writing a file, the file pointer points to the end of the file
Fout.open ("D:/1.txt", ofstream::out|ofstream::app);//cannot be used | |
if (!fout.is_open ())
{
Return

}


C language version


FILE *pf=null;
Pf=fopen ("D:/1.txt", "r+"); r+ Open Read-write file, if the file does not exist open failed, if the file exists open file successfully
if (pf==null)
{
cout<<m_sfilepath<< "does not exist now re-create" <<endl;
}
if (pf==null)
{
Pf=fopen (M_sfilepath.c_str (), "w+"),//w+ open a read-write file, if the file exists then the file length is clear to zero, that is, the contents of the file disappears. If the file does not exist, the file is created.
cout<< "Recreate file" <<m_sFilePath<<endl;
if (pf==null)
{
Return
}
}

R opens the file as read-only, and the file must exist.
r+ Open the file as read-write, the file must be present.
W Open Write-only file, if the file exists then the file length is clear to 0, that is, the contents of the file will disappear. If the file does not exist, the file is created.
w+ Open a read-write file, if the file exists then the file length is clear to zero, that is, the contents of the file will disappear. If the file does not exist, the file is created.
A write-only file opens in an additional way. If the file does not exist, the file will be created, and if the file exists, the data written will be added to the end of the file, that is, the original content of the file will be retained. (EOF character reserved)
A + opens readable and writable files in an additional way. If the file does not exist, the file will be created, and if the file exists, the data written will be added to the end of the file, that is, the original content of the file will be retained. (the original EOF character is not preserved)

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

FStream several ways to open files, easy to use later

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.