Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6877475
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:36:18+00:00 2026-05-27T04:36:18+00:00

I’ve been writing a C++ program that will eventually remove certain undesired formatting from

  • 0

I’ve been writing a C++ program that will eventually remove certain undesired formatting from text files. Unfortunately, I’m still far from reaching this goal.

My current issue is my seeming inability to open text files that are located in a given (user-inputted) directory. Here is where I’m at so far, stripped of most unneeded bulk:

//header, main function, bulk

//variable definitions
FILE * pFile;
//char filePathBuffer [512];  --unused, from older attempts
string currentLine = "", command = "", commandList = "ct", filePath = "defaultPath";
int quotePos = 0, slashPos = 0, bufferLength = 0;
bool contQuote = true, contSlash = true;

cout << "> ";
getline(cin, command);

//various exit commands
while(command != "q" && command != "quit" && command != "exit") {

    //check for valid commands stored in a string
    //--definitely not the best way to do it, but it's functional

    if(commandList.find(command) == commandList.npos) {
        puts("\nPlease enter a valid command.\n");
    }
    else if(command == "t") {
        puts("\nPlease enter the file path:\n");
        cout << "> ";
        getline(cin, filePath);

        //rip all quotes out of the entered file path
        while(contQuote == true) {
            quotePos = filePath.find("\"");

            if(quotePos == filePath.npos)
                contQuote = false;
            else
                filePath.erase(quotePos, 1);
        }

        pFile = fopen(filePath.c_str(), "r+");

        //I've also tried doing countless variations directly in the code,
        //as opposed to using user-input. No luck.
        //pFile = fopen("C:\\test.txt", "r+");

        if(pFile!=NULL) {
            cout << "\nFile opened!" << endl << endl;
            fclose (pFile);
        }
        else
            cerr << "\nFile failed to open!\n\n";

    }

    //reset variables to default values
    quotePos = -1;
    slashPos = -1;
    contQuote = true;
    contSlash = true;

    cout << "> ";
    getline(cin, command);
}

I’m not actually sure whether the input string should have quotes or not – I couldn’t get them to work either way. I also tried to do a filePath.find(‘\\’) to find backslashes (so that I could then add a second backslash into the filePath for proper parsing), but had no luck in the end.

Do you guys have any idea how I can remedy this situation?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T04:36:18+00:00Added an answer on May 27, 2026 at 4:36 am

    I suggest you take a look at what filePath contains when you call fopen. Then you will be able to see what is going wrong.

    Two approaches:

    1. Print out the value just before you call fopen

    2. Use debugger, place breakpoint on fopen call and inspect content of filepath

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a bunch of posts stored in text files formatted in yaml/textile (from
For some reason, after submitting a string like this Jack’s Spindle from a text
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have a text area in my form which accepts all possible characters from
I need a function that will clean a strings' special characters. I do NOT
I'm working with an upstream system that sometimes sends me text destined for HTML/XML
I have a jquery bug and I've been looking for hours now, I can't
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.