Tagged Questions

6
votes
4answers
562 views

What causes WriteFile to return ERROR_ACCESS_DENIED?

We currently face the problem of a call to WriteFile (or, rather CFile::Write - but that just calls WriteFile internally) causing the Win32 error 5 ERROR_ACCESS_DENIED. (EDIT: Note that we can't ...
4
votes
6answers
1k views

Unable to write file in C++

I'm trying to to the most basic of things .... write a file in C++, but the file is not being written. I don't get any errors either. Maybe I'm missing something obvious ... or what? I thought ...
4
votes
13answers
3k views

Write a circular file in c++

I need to write a circular file in c++. The program has to write lines in a file and when the code reaches a maximum number of lines, it must overwrite the lines in the beginning of the file. Anyone ...
2
votes
1answer
64 views

ReadFile() returns a blank data

I'm testing serial port communication by connecting COM port RD and TD pins together. The COM port has been initialized before the code below is executed. CString cs_Send = "F: 5000000 Hz, SF: 1.0, ...
1
vote
1answer
461 views

WriteFile() blocks (writing from C++ client to C# server via named pipe )

I am stuck here, please help. I have a C# named pipe server, the pipe is created by: new NamedPipeServerStream(pipeName, PipeDirection.InOut, numThreads); In C++ I created the client like this: ...
1
vote
2answers
179 views

Creating BMP File

I've been working for a while on image processing and I've noticed weird things. I'm reading a BMP file, using simple methods like ReadFile and stuff, and using Microsoft's BMP structures. Here is the ...
1
vote
2answers
91 views

Why the following c++ snippet gives exception?

VIDEOINFOHEADER *pVih = (VIDEOINFOHEADER*)pmtConfig->pbFormat;; ... WriteFile( hHandle, pVih, sizeof(VIDEOINFOHEADER), NULL, NULL ); Through debugging I found WriteFile reports exception, how to ...
1
vote
4answers
1k views

Writing files to USB stick causes file corruption/lockup on surprise removal

I'm writing a background application to copy files in a loop to a USB stick with the "Optimize for quick removal" policy set. However, if the stick is removed part way through this process ...
0
votes
2answers
148 views

Deadlock with WriteFile/ReadFile

I'm using pipes and I got a kind of deadlock on WriteFile/ReadFile. Here is my code : hProbePipeRet = CreateNamedPipe( "\\\\.\\pipe\\probePipeRet", // pipe name ...
0
votes
2answers
324 views

WriteFile returning error 1784

I am creating a program to populate a disk with a dummy file system. Currently, I am writing files of variable sizes using WriteFile. WriteFile(hFile, FileData, i * 1024, &dwWrote, ...
0
votes
2answers
115 views

WinAPI Write “Edit” Dialog to Pipe (Error: Stack around variable 'x' was corrupted)

It seems I figured out most of my problems by simply multi-threading my application! However, I am running into a little bit of an error: "Stack around variable 'x' was corrupted." It works properly ...
0
votes
3answers
255 views

saving file to network

I have a file that's about 7 MB that saves to my local share in a matter of seconds. However, saving that file to a network location takes minutes. I'm wondering what I can do to speed this up. ...