// reading a text file
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main () {
string line;
ifstream myfile ("example.txt");
if (myfile.is_open())
{
while ( getline (myfile,line) )
{
//use line here
}
myfile.close();
}
else cout << "Unable to open file";
return 0;
}
// basic file operations
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream myfile;
myfile.open ("example.txt");
myfile << "Writing this to a file.\n";
myfile.close();
return 0;
}
Posted by: Guest
on November-09-2019
1
obj c write file
//writes an textfile to an place in the document directory
-(void)write:(NSString *)dir file:(NSString *)ff{
//get the documents directory:
NSArray *paths = NSSearchPathForDirectoriesInDomains
(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
//make a file name to write the data to using the documents directory:
NSString *fileName = [NSString stringWithFormat:[@"%@/" stringByAppendingString:dir],
documentsDirectory];
//creates the content
NSString *content = ff;
//save content to the documents directory
[content writeToFile:fileName
atomically:NO
encoding:NSStringEncodingConversionAllowLossy
error:nil];
}
//usage: [self write:@"text.txt" file:@"this text will be saved"];
Posted by: Guest
on April-08-2020
7
how to read and write in a file c++
#include <iostream>
#include <fstream>
using namespace std;
ifstream file_variable; //ifstream is for input from plain text files
file_variable.open("input.txt"); //open input.txt
file_variable.close(); //close the file stream
/*
Manually closing a stream is only necessary
if you want to re-use the same stream variable for a different
file, or want to switch from input to output on the same file.
*/
_____________________________________________________
//You can also use cin if you have tables like so:
while (cin >> name >> value)// you can also use the file stream instead of this
{
cout << name << value << endl;
}
_____________________________________________________
//ifstream file_variable; //ifstream is for input from plain text files
ofstream out_file;
out_file.open("output.txt");
out_file << "Write this scentence in the file" << endl;
Posted by: Guest
on April-04-2020
0
write to file in C++
ofstream myfile;
myfile.open("file.txt");
myfile << "write this to file"
Posted by: Guest
on July-01-2020
Code answers related to "c++ fstream write to file"
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems
resetting your password contact us
Check Your Email and Click on the link sent to your email