0
votes
4answers
75 views
Reading files and deleting repeated letters
Hello! So my goal is to make a function that has a partially filled array of characters as a formal parameter and deletes all repeated letters from the array. So I just need to rea …
1
vote
2answers
55 views
Can an ifstream variable be a global variable?
// stream from file.
ifstream file;
int main (int argc, char * argv[]) {
// get argument passed from command line
// This is file name
if (argc != 2 ) {
cout << "use: ./e …
1
vote
2answers
177 views
How to use different ifstream modes in c++?
According to the reference, if I use ifstream infile ( "test.txt" , ifstream::in ); it will Allow input operations on the stream. But what are some of the examples of the "input …
0
votes
2answers
66 views
Reading through file using ifstream
I am trying to read from file:
The file is multiline and basically i need to go over each "word". Word being anything non space.
Sample input file would be:
Sample file:
…
0
votes
2answers
90 views
Vector of ifstreams
How can I create and manipulate a vector of ifstreams?
Something like this, except this doesn't work:
vector<ifstream> Files(10, ifstream());
Files[0].open("File");
0
votes
3answers
75 views
Where does Visual Studio search for txt files when conducting file management operations?
I know this is a noob question, but I've worked with Python before and when you wanted to simply access a .txt file for example, all you had to do was make sure the txt file was in …
0
votes
3answers
315 views
ifstream.read() vs. ifstream.readsome() in MSVC++7.1
Hi,
I just took some older code of a file reader that had been developed under Linux and tried to use that very same code in my Windows project compiled with MSVC++7.1. The code c …
1
vote
6answers
138 views
problem opening file c++
Must be a simple answer but I am at a loss, here is the code that is returning an error. I have tried with and without the starting slash.
I won't know the full path, I want it to …
1
vote
2answers
259 views
Put A String In A ifstream Method
Hello,
I'm learning C++ and i'm getting some troubles when i'm trying to use a String in a ifstream method, like this:
string filename;
cout << "Enter the name of the file: …
0
votes
3answers
391 views
Windows std::ifstream::open() problem
I know there's been a handful of questions regarding std::ifstream::open(), but the answers didn't solve my problem. Most of them were specific to Win32, and I'm using SDL, not tou …
1
vote
1answer
144 views
ifstream seekg beyond end does not return eof in VS 2008 Express?
In VS 2005, I have some code that looks like this:
ifs.open("foo");
while (!ifs.eof())
{
ifs.read(&bar,sizeof(bar));
loc = ifs.tellg();
loc += bar.dwHeaderSize;
…
2
votes
3answers
142 views
C++ How to read in objects with a given offset?
Now I have a file with many data in it.
And I know the data I need begins at position (long)x and has a given size sizeof(y)
How can I get this data?
8
votes
4answers
571 views
Do I need to manually close a ifstream?
Do I need to manually call close() when I use a std::ifstream?
For example in the code:
std::string readContentsOfFile(std::string fileName) {
std::ifstream file(fileName.c_st …
0
votes
4answers
638 views
ifstream Open function not working
I've been all over the ifstream questions here on SO and I'm still having trouble reading a simple text file. I'm working with Visual Studio 2008.
Here's my code:
// CPPFileIO.c …
0
votes
3answers
822 views
Open file by its full path in C++
Hello,
I want the user to give me the full path where the file exists and not just the file name. How do I open the file this way?
Is it something like this:
ifstream file;
file …
