Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have to write CreateFile function in c++ I wrote this, but it didn't work

#include <iostream>
#include <windows.h>
#include <string>
using namespace std;

int main()
{
    HANDLE hfile = CreateFile(
           ".\temp.txt",                // "\\.\C:" 
           GENERIC_READ, 
           0,
           NULL,
           CREATE_NEW,
           FILE_ATTRIBUTE_NORMAL,
           NULL);

    //if (hFile == INVALID_HANDLE_VALUE) cout << "Unable to create file \n";
    return 0;
}

error C2664: 'CreateFileW' : cannot convert parameter 1 from 'const char [10]' to 'LPCWSTR'

How can I fix this error?

share|improve this question
As well as using a wide string, you'll want to get rid of that tab character \t. Use L".\\temp.txt" – David Heffernan Sep 22 '12 at 18:47

closed as too localized by tenfour, pad, Lucifer, Sergey K., stealthyninja Sep 23 '12 at 9:21

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

The error message tells you that it's trying to call CreateFileW which is the wide character version of CreateFile. You'll need to pass it a wide char literal instead of a regular char one;

hfile = CreateFile(
       L".\temp.txt",                // Notice the L for a wide char literal 
       GENERIC_READ, 
       0,
       NULL,
       CREATE_NEW,
       FILE_ATTRIBUTE_NORMAL,
       NULL);

More info can be found here.

share|improve this answer
And how can i write some data into temp.txt ? (changed GENERIC_READ -> GENERIC_WRITE ) – asdf Sep 22 '12 at 18:15
@user1394489 Normally using WriteFile, which will write to the file handle CreateFile returns. – Joachim Isaksson Sep 22 '12 at 18:22
this code compiles without errors, but it doens't create my file .. #include <iostream> #include <windows.h> #include <string> using namespace std; int main() { HANDLE hfile; char data[] = "some text to write into file"; hfile = CreateFile( L"c:\name.txt", GENERIC_WRITE, 0, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL); /* if (hFile == INVALID_HANDLE_VALUE) { cout << "Unable to create file \n"; } */ return 0; } – asdf Sep 22 '12 at 19:04
1  
@user1394489 You're not checking the return value, I'm guessing you're getting a security violation since C: is not writable unless you're an administrator if you're running at least Vista or newer. Try creating a C:\Temp directory and writing to there. – Joachim Isaksson Sep 22 '12 at 21:18
@user1394489 Also, as noted in the comments above, if you're really using L"c:\name.txt" and not L"c:\\name.txt", your filename will contain a line feed \n instead of a backslash before name. – Joachim Isaksson Sep 23 '12 at 11:52

Not the answer you're looking for? Browse other questions tagged or ask your own question.