Tagged Questions
The writefile tag has no wiki summary.
6
votes
2answers
521 views
Strange behavior with FileStream.WriteFile
I'm working on a program that does heavy read/write random access on huge file (till 64 GB). Files are specifically structured and to make access on them I've created a framework; after a while I ...
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 ...
3
votes
1answer
98 views
Why does WriteFile crash when writing to the standard output?
Here's a "Hello world" program that uses WinAPI's WriteFile (compiled in Microsoft Visual C++ 2008 Express):
int _tmain(int argc, _TCHAR* argv[])
{
wchar_t str[] = L"Hello world";
HANDLE out ...
3
votes
1answer
199 views
P/Invoke call just stops
I'm trying to write data to a serial port via P/Invoke (explicitly not with the SerialPort-class). Here's what I have so far:
[DllImport("kernel32", SetLastError = true)]
static extern IntPtr ...
3
votes
6answers
387 views
How to check whether there's enough space before WriteFile in c in windows?
hPipe = CreateNamedPipe(
lpszPipename, // pipe name
PIPE_ACCESS_DUPLEX, // read/write access
PIPE_TYPE_MESSAGE | // message type pipe
...
3
votes
1answer
410 views
Is WriteFile atomic?
I'm designing a system that will write time series data to a file. The data is blocks of 8 bytes divided into two 4 bytes parts, time and payload.
According to MSDN the WriteFile function is atomic ( ...
3
votes
1answer
6k views
problem writing a NSMutableArray to file in cocoa
A real beginners question.
I have a NSView subclass in which I create a NSMutableArray containing NSValues. When I want to write the array to a file using writetofile:atomatically: the file is created ...
3
votes
4answers
2k views
Serial port WriteFile() freeze
I have a simple application, which should send a single byte to a serial port once a minute. But sometimes, from some strange reason, it freezes somewhere in the WriteFile() function. Both sw and hw ...
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, ...
2
votes
2answers
93 views
How to Clear variables from JTextFields without closing whole program?
I have created a text file in which to store some variables which are taken from text fields. But in order to submit new variables to this text file, I need to close my program and reopen it. The ...
2
votes
2answers
327 views
Serial, RS422, In C#, TxDone Event Not Firing, No Data Being Received
I am writing an application that uses OpenNETCF.IO.Serial (open source, see serial code here) for its serial communication on a Windows CE 6.0 device. This application is coded in C# in the Compact ...
2
votes
3answers
776 views
Remove Characters from EOF while Writing to File in Matlab
In Matlab, after creating a certain number of lines and printing them to a file, I have the need to delete a line and rewrite the rest of the data to that same file. When I do so, the new data ...
1
vote
2answers
33 views
Save Java txt file to folder
First of all - I love you all at Stackoverflow! Everyone is very helpful! Sadly when I go to answer questions they are all too advance for me :'(
I want to save the text file to a folder - but not an ...
1
vote
1answer
39 views
When to use managed vs unmanaged memory in WriteFile() and ReadFile()
I got some example code from www.lvr.com showing how to use WriteFile() and ReadFile() to write/read from a USB device. In the example, Jan uses unmanaged memory as parameters to WriteFile() and ...
1
vote
2answers
174 views
Writing synchronously to a file opened with FILE_FLAG_OVERLAPPED
I have opened a file using
HANDLE handle=
CreateFileW(
fileName, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING,
FILE_FLAG_OVERLAPPED, NULL);
The file handle is then ...
1
vote
1answer
629 views
How to WriteFile to a PhysicalDrive (Windows 7) without getting ERROR_ACCESS_DENIED?
I'm trying to write a test pattern to every sector of a formatted USB drive. There is one logical drive (e.g. h:). This volume is FAT-formatted and contains data to be overwritten. Also, I want to ...
1
vote
5answers
88 views
Suggestion about storing values in file in Java?
I have a program where i generate a huge matrix and once it is calculated, i have to reuse it at later times. For that reason, i want to cache it to the local hard disk so that i can read it at later ...
1
vote
2answers
197 views
WriteFile failing depending on length of data to write?
EDIT
Oddly enough, I've worked around this issue, but it's still annoying me. I worked around it by sending too-long writes, with padded zeroes; the code works but sends a few hundred unnecessary ...
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
2answers
42 views
How to access files in Java ME
I want to access the files encircled in this screenshot.
What path should I use?
This is for my JavaME application. file:///ParseExample/service1.xml doesn't seem to be the right one.
...
1
vote
3answers
190 views
Is it possible to “intercept” a 3rd party library's “WriteFile” operation
This is likely a long shot, but I thought I'd ask anyway. I'm using a document management system's API. They provide a "WriteFile" method to save a given document to disk. However, the library does ...
1
vote
4answers
2k views
WriteFile vs TransmitFile for large files that need to be deleted from the server after transfer
I have to trigger user downloads of large files to a webbrowser, where I create the file to transfer on the server, then delete it immediately afterwards. I've found enough examples to see that I ...
1
vote
1answer
5k views
Java - open existing file or create one if doesn't exist using IO streams
I was following instructions from a Java website (http://java.sun.com/docs/books/tutorial/essential/io/file.html#createStream) on creating or writing a file using an IO stream. However, the code it ...
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 ...
1
vote
4answers
973 views
sprintf() and WriteFile() affecting string Buffer
I have a very weird problem which I cannot seem to figure out. Unfortunately, I'm not even sure how to describe it without describing my entire application. What I am trying to do is:
1) read a ...
0
votes
1answer
103 views
Response Writefile isn't creating a PDF when using Chrome
I'm using the following code to send a PDF to users to open/download. This works fine in IE9. Any ideas why it won't work in Chrome?
Response.Clear();
Response.AddHeader("Content-Disposition", ...
0
votes
2answers
150 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
5answers
206 views
Write a unicode CString to a file using WriteFile API
How can I write contents of a CString instance to a file opened by CreateFile using WriteFile Win32 API function?
Please note MFC is not used, and CString is used by including "atlstr.h"
edit: Can ...
0
votes
1answer
366 views
How to write binary data to a file using node.js?
I am trying to do toDataUrl() of canvas, and it gives base64 data. I want to store it as a png. I can get the converted binary data from base64, but I cant write it to a file using NodeJs service.
...
0
votes
1answer
156 views
WriteFile on a file over a network share
I have a program which reads and write large data. The read and write works well when the write is to a file on the local drive. When the target is a network share, and when I run two instances of the ...
0
votes
2answers
326 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
1answer
223 views
PInvokeStackImbalance was detected on WriteFile kernel32.dll
After i migrated from Framework 2 to framework 4, i get an error when i run the WriteFile function.
[DllImport("kernel32.dll")]
public static extern bool WriteFile(SafeHandle hFile,
...
0
votes
0answers
63 views
Cell Info Logger using threads/AsyncTask
I want to develop an android application that takes the cid and lac of the network tower as well as the neighboring cids every 10 secs and log them in a file. I have faced many problems and I need a ...
0
votes
2answers
90 views
How can I read the rest of a file after the first 64 bytes?
I must use a file for work. First 64 byte must be a header. So I must read first 64 bytes and then read to end of file. How can I read and write a file with J2ME?
Read fully a file is that:
...
0
votes
5answers
153 views
C# (Unit Testing): I need to make it impossible to write to a file through code
Basically, here's the situation. I have the following:
public IService Service { get; set; } //Set to MyMockedService class.
public Boolean DoFoo()
{
//possible other ways of returning ...
0
votes
2answers
2k views
writing JSON object to .json file on server
I'm trying to write my JSON object to a .json file on the server. The way I'm doing this now is:
JavaScript:
function createJsonFile() {
var jsonObject = {
"metros" : [],
...
0
votes
1answer
100 views
NetBeans 6.8 C++, files are being written and read in the wrong directory
When i run my project with the "Run main project" mode, my program writes the .txt file to my /home directory. I found this extremely odd, so I ran the program with "Debug main project" mode and it ...
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
1answer
320 views
Saving CSV in cocoa
I need to make a cvs file in cocoa. To see how to set it up I created one in Numbers and opened it with text edit it looked like this:
Results,,,,,,,,,,,,
,,,,,,,,,,,,
A,10,,,,,,,,,,,
B,10,,,,,,,,,,,
...
0
votes
2answers
655 views
Simple Mailslot program not working?
Using the client and server examples found here: http://www.winsocketdotnetworkprogramming.com/winsock2programming/winsock2advancedmailslot14.html Compiling them with VS2008, running the server and ...
0
votes
3answers
306 views
Why does .NET not clear errors internally?
I am running the following scenerio:
SafeFileHandle handle = Win32API.CreateFile((deviceName + "\\" + pipeName),
DesiredAccess.GENERIC_WRITE | DesiredAccess.GENERIC_READ,
...
0
votes
2answers
1k views
On Data Frame: Writing to File and Naming Binded Vector in R
I have a data that looks like this. And my code below
simply compute some value and binds the output vector to the
original data frames.
options(width=200)
args<-commandArgs(trailingOnly=FALSE)
...
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. ...
-1
votes
1answer
73 views
Write String to Mapped File With Windows Api
I'm trying to write a string to a mapped file with c and visual studio.
( pFile = (char *) MapViewOfFile(hMMap,FILE_MAP_ALL_ACCESS,0,0,0))
start = pFile;
while(pFile < start + 750){
...