Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
0answers
139 views

Can't open COM1 from application launched at startup

I'm using WinLIRC with IR receiver connected to serial port COM1 on Windows 7 x64. WinLIRC is added to Startup folder (Start->All applications->Startup) so it starts every time I log in. Very often ...
3
votes
7answers
219 views

How to FTP constantly incoming files

Ok, here's the situation... I have an application that generates about 8 files per second. Each file is 19-24kb. This generates about 10 to 11 MB per minute. This question is not about how to ftp, ...
3
votes
2answers
698 views

PHP create file for download without saving on server

Ultimate goal: I want to create a webpage where a user can enter information in forms. With that information I want to create a html file (below called test-download.html) by inserting the information ...
3
votes
4answers
263 views

Creating a file of arbitrary size using Windows C++ API

I would like to create a file of arbitrary size using the Windows C/C++ API. I am using Windows XP service pack 2 with a 32 bit virtual address memory space. I am familiar with CreateFile. However ...
3
votes
5answers
514 views

Best way to create application icon

What is the best way to crate icon for application. From Visual Studio or maybe some another program. I create icon in VS and use it as application icon, but when I put icon shortcut on desktop there ...
3
votes
5answers
507 views

Creating a Random File in C#

I am creating a file of a specified size - I don't care what data is in it, although random would be nice. Currently I am doing this: var sizeInMB = 3; // Up to many Gb using ...
3
votes
4answers
599 views

In Windows, should I use CreateFile or fopen, portability aside?

What are the differences, and in what cases one or the other would prove superior in some way?
2
votes
1answer
383 views

CreateFile() returns INVALID_HANDLE_VALUE but GetLastError() is ERROR_SUCCESS

I am opening a serial port using CreateFile(). I've got a testcase (too complicated to redistribute) that consistently causes CreateFile() to return INVALID_HANDLE_VALUE and GetLastError() to return ...
2
votes
1answer
356 views

Calling CreateFile using JNA gives UnsatisfiedLinkError: Error looking up function 'CreateFile': The specified procedure could not be found

I'm trying to call Win32's CreateFile function on Windows 7 using JNA with the aim being to do a Java implementation of this answer to checking if a file is in use by another process. The code I have ...
2
votes
2answers
79 views

foreign chars in file name on Android

When I try this on my SDcard in Android Phone: File outputFile = new File(path, clickedKey+".txt"); OutputStream fos = new FileOutputStream(outputFile); fos.write(data.getBytes()); fos.close(); ...
2
votes
1answer
70 views

What does FILE_FLAG_POSIX_SEMANTICS do?

I'm aware that FILE_FLAG_POSIX_SEMANTICS allows for case sensitivity in file names, but the fact that it wasn't named FILE_FLAG_CASE_SENSITIVE makes me think it might be doing more than that. Does it ...
2
votes
2answers
49 views

Reading from a communications resource

I want to read some data from a device connected to a COM port. HANDLE handle =CreateFileW(L"\\\\.\\COM3", GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL); gives ...
2
votes
1answer
449 views

CreateFile Hook

I am trying to Create a Hook for CreateFile, so when a process tryies to create a file the hookdll we created will notify the user that: "this process xx.exe trying to create xx.exe, Do you want to ...
2
votes
1answer
225 views

VB6: CreateFile() creates file with garbled name in current working directory

I was troubleshooting a problem where CreateFile couldn't open an existing named pipe when I found CreateFile() didn't work well with the filename parameter. My code is: Private Declare Function ...
2
votes
2answers
400 views

atomic file creation on Linux?

I need to create a file if it does not exist, in a way that another process trying to create this file would fail. I need the file be considered "created" even before the creating process finished ...
2
votes
1answer
540 views

Read text file (Unicode) in 'C' using native Win32

I have a line-oriented text file (Unicode) that was created using CreateFile() and WriteFile(). Reading that file as a binary stream using ReadFile() is straightforward, but extra low-level ...
2
votes
2answers
438 views

php create file with given size

How can i create in PHP a file with a given size (no matter the content)? I have to create a file bigger than 1GB. Arround 4-10GB maximum
2
votes
1answer
1k views

Can CreateFile() Open one file at the same time in two different thread

Can CreateFile() Open one file at the same time in two different thread void new_function(void * what) { HANDLE h = CreateFile("c:\\tmp", GENERIC_ALL,FILE_SHARE_WRITE | ...
1
vote
4answers
42 views

How to create a folder in the root directory of my Java application?

Is there a way to create a folder (with a specific name) in the main directory of my Java app. I have a user system in my game, and whenever a new user is created, I want it to create a folder that ...
1
vote
1answer
78 views

CreateFile and memory management

I am creating/opening a file using CreateFile() Windows API. Let's assume that my drive has a bad sector and the file could not be open or an attempt to write to this file failed. If I will recreate ...
1
vote
2answers
77 views

CreateFile Returns negative handle

Any ideas why the createfile() function would be returning -1. Handle = CreateFile(filename, &H80000000, 0, 0, 3, &H80, 0) This is run a few times. I was thinking perhaps maybe the file is ...
1
vote
2answers
41 views

Create dir with datetime name and subfiles within directory (Python)

I'm currently looking to create a directory on Linux using Python v2.7 with the directory name as the date and time (ie. 27-10-2011 23:00:01). My code for this is below:- import time import os ...
1
vote
4answers
232 views

Windows WriteFile problem when using threads

My company is developing a hardware that needs to communicate with software. To do this, we have made a driver that enables writing to and reading from the hardware. To access the driver, we use the ...
1
vote
2answers
194 views

Writing from System.out.println to a file

I've replaced many strings and outputted the result and now am trying to write those lines into a text file. Here's what I did. I created a new file: File newfile = new ...
1
vote
1answer
242 views

Can I create a .xls file programatically in xcode?

I need to create a .xls file from the Array data programatically in iPhone. How can this be done. Thanks in advance, Hanu
1
vote
0answers
56 views

Ways to synchronize write access to a file on a network share

I'm writing a program using C++ under Windows that needs to synchronize write access to a file via a local network. I was thinking to use the following approach: //Create or open it using 0 for ...
1
vote
3answers
253 views

Opening %SystemRoot%\system32\calc.exe from a 32-bit process redirects to another file. Which, why and how?

I'm currently writing some test code in C++ that messes around with PE files to understand its file format structure. My project is set to compile to 64 bit. In my code I open ...
1
vote
2answers
203 views

Create X number of directories using batch script

I am currently trying to write a quick batch script which will loop 1 through X and create a directory with an empty .txt file. Here is what I have written so far: set x = 10 :DoUntil MkDir "Test ...
1
vote
1answer
369 views

How do you make an apk create a file on the sdcard when the apk is installed?

I am very new to android development and am looking for a way to modify existing source-code in eclipse so that when the apk is installed, an xml file is copied from inside the apk to a specific ...
1
vote
3answers
480 views

File.createNewFile() for relative path uses wrong directory after changing “user.dir”-Property

this is my first time asking a question on this great page, so please be patient to me if i make mistakes. What i am trieing to do is to create a new File with relative path in my user-directory after ...
1
vote
4answers
1k views

Why would fopen fail to open a file that exists?

I'm on Windows XP using Visual Studio 6 (yes I know it's old) building/maintaining a C++ DLL. I'm encountered a problem with fopen failing to open an existing file, it always returns NULL. I've ...
1
vote
6answers
2k views

Converting a string to LPCWSTR for CreateFile() to address a serial port

I seem to be having a bit of a TEXT / UNICODE problem when using the windows CreateFile function for addressing a serial port. Can someone please help point out my error? I'm writing a Win32 console ...
1
vote
1answer
267 views

Opening a handle to flash drive gives me an “Access Denied” error code

I would like to know why when I try to create a handle to a USB flash drive, I receive a path not found error. HANDLE aFile = CreateFile(_T("\\\\.\\F:\\"), GENERIC_READ, 0, NULL, ...
1
vote
1answer
521 views

calling CreateFile, specifying FILE_ATTRIBUTE_TEMPORARY | FILE_FLAG_DELETE_ON_CLOSE

Before I describe my problem, here is a description of the program I'm writting: This is a C++ application. The purpose of my program is to create file on RAM memory. I read that if specify ...
1
vote
1answer
169 views

How to obtain the first cluster of the directory's data in FAT using C# (or at least C++) and Win32API?

So I have a FAT drive, lets say H: and a directory 'work' (full path 'H:\work'). I need to get the NUMBER of the first cluster of that directory. The number of the first cluster is 2-bytes value, that ...
1
vote
2answers
1k views

CreateFile fails on opening fs driver

i'm trying to communicate with my filesystem driver. I can start the driver with OpenSCManager, CreateService and OpenService but when i'm trying to use "CreateFile", it always says Errorcode 2 (I ...
1
vote
8answers
428 views

How to create a super-huge file with pure c or linux-shell or dos-commands?

My os and drive is OS: Windows XP sp2 or Linux SUSE 9 or Cygwin Compiler: Visual C++ 2003 or Gcc or Cygwin PC and os are both 32 bits So, How can I create a super-huge file in secs I was told to ...
1
vote
1answer
2k views

CreateFile with the FILE_FLAG_DELETE_ON_CLOSE flag

Before I describe my problem, here is a description of the program (IHExplorer.exe) I'm writting: This is a C++ application. The IHExplorer application is to look as much like a Windows Explorer ...
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
1answer
491 views

Setting the last-modified-time of a directory opened for ReadDirectoryChangesW

I hava a Java program that needs to monitor a directory tree for changes. I have JNI code that uses ReadDirectoryChangesW(). The directory is opened like: HANDLE dirHandle = CreateFile( path, ...
1
vote
3answers
147 views

Java: Proper Way of Making Directories

Directories some_folder, some_folder_1, some_folder_2, and some_folder_3 don't exist initially. File folder1 = new File("some_folder/some_folder_1"); File folder2 = new ...
1
vote
1answer
1k views

SharePoint through Web Client Service (webclnt.dll). CreateFile fails

I have an application that creates and edits documents. I need to integrate it with SharePoint, so that users can edit files on SharePoint servers using my application. My environment is Visual C++, ...
1
vote
2answers
1k views

Open a socket using CreateFile

We've got some old serial code which checks whether a serial port is available simply by opening it and then closing it. Now we are adding network support to the app I want to reuse the function by ...
1
vote
3answers
915 views

How to get the actual path of a file in Vista with UAC?

I am calling CreateFile() to create a file in the Program Data directory. I'm using SHGetSpecialFolderPath() to get the dir name. I have a user with Vista for whom CreateFile() is returning error 5 ...
0
votes
0answers
52 views

how to create excel file and read xls using php excel reader?

Create excel file dataexcel.xls using php. dataexcel.xls file has more data. Then same dataexcel.xls file doesn't read php excel reader. Directly created .xls files are readable. But created excel ...
0
votes
1answer
17 views

iphone : Are there any permission when creating file in the resource Path in mainBundle

I want to create/rename/remove the temporary file inside the resourcePath from the mainBundle. NSString* path = [[NSBundle mainBundle] resourcePath]; NSFileManager* filemgr = [NSFileManager ...
0
votes
1answer
20 views

iOS create file

I am trying to open a file for writing into it. The file may not exist. I found that [NSFileHandle fileHandleForWritingAtPath:filePath] returns nil if file does not exist. Having googled, I found ...
0
votes
2answers
91 views

how do disable disk cache in c# invoke win32 CreateFile api with FILE_FLAG_NO_BUFFERING

everyone,i have a lot of files write to disk per seconds,i want to disable disk cache to improve performance,i google search find a solution:win32 CreateFile method with FILE_FLAG_NO_BUFFERING and How ...
0
votes
1answer
64 views

Problems deleting and creating file on SD card

Theres a problem I can't seem to fix: In my OnCreate in the CameraActivity, I delete the picture first if it's there. If there is a situation where this is done, the picture file is created but the ...
0
votes
0answers
50 views

PHP code that generates new PHP file?

I'm doing sort of a twitter and I'm looking for a solution for this problem - entering the username in the url bar (twitter.com/username4) and showing his page. The thing is, how can I set the PHP ...

1 2