Open file with fopen, given absolute path on Windows

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-17 11:02:42

问题


I'm trying to make a program that counts the number of lines of a file, when I try to pass the absolute path to the fopen function, is simply tells me that is not found, here is my code:

#include <iostream>
#include <stdio.h>
#include <stdlib.h>

using namespace std;

int main(int argc, char *argv[])
{
    int i=0;
    char array[100];

        char caracteres[100];
        FILE *archivo;
        archivo = fopen("C:\Documents and Settings\juegos psps.txt","r");
        if (archivo == NULL){cout<<"Dont Work";}
        while (feof(archivo) == 0)
        {
                fgets(caracteres,100,archivo);
                i++;
                }
                cout << "Number of lines:" << i ;
                return 0;
}

How should I pass the absolute path to my program so you can open the file?


回答1:


Use double slashes:

"C:\\Documents and Settings\\juegos psps.txt"



回答2:


It is not working because the compiler examines a backslash in a literal string together with the next character and usually interprets them as one character in all. Such two-char sequences in string literals are called escape sequences.

The sequences \D and \j do not map to anything (contrast this with \n which maps to the newline character), and in this case the standard says that the compiler can interpret them as it chooses. Some compilers choose to ignore the backslash, which in your case would result in the equivalent:

archivo = fopen("C:Documents and Settingsjuegos psps.txt","r");

(You can try creating a file with this name to test if this is what your compiler does).

The correct escape sequence for a backslash is a double backslash, so you should write it as

archivo = fopen("C:\\Documents and Settings\\juegos psps.txt","r");



回答3:


works as well on windows and linux: / instead of escaping backslashes \\

"C:/dir1/dir2/file.ext"



回答4:


Check the spaces in the filename. The slashes were properly escaped, but the blank space was not.

Try:

fopen("C:\\\\Documents\ and\ Settings\\\juegos psps.txt","r")




回答5:


make a new folder in the code blocks folder

in the project folder next to main and header file make new file "exemple1" and put your file in it "file.txt",then

string nom_fichier;
nom_fichier = "exemple1/file.txt" ;
fichier = fopen(nom_fichier.c_str(), "r+");



回答6:


Given all codes and paths are correctly typed, another possible reason that causes fopen doesn't work could be your Project Properties-> C/C++ Code Generation->Runtime Library set to /MD rather than /MDd for Debug build, this setting should correspond the project configuration, XX to Release XX(d) to Debug



来源:https://stackoverflow.com/questions/11466139/open-file-with-fopen-given-absolute-path-on-windows

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!