1
vote
7answers
127 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
142 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
88 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
568 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
341 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
449 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
1answer
32 views
Calling CreateFile on a physical device path in a loop
I have some C# code that is calling CreateFile on a different physical device path each time through a loop(ie \.\PhysicalDrive1, then \.\PhysicalDrive2, ...) via pInvoke and then using the returned …
0
votes
1answer
188 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 …
0
votes
1answer
174 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 |
…
0
votes
1answer
126 views
Python CreateFile Cannot Find PhysicalMemory
I am trying to access the Physical Memory of a Windows 2000 system (trying to do this without a memory dumping tool). My understanding is that I need to do this using the CreateFile function to …
0
votes
2answers
123 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
1answer
31 views
Reading ASCII File TAB is Replaced with NULL
Hello. I'm using CreateFileA and ReadFile in Visual C++ 2008 to open and read an ASCII text file into memory. This works okay (I can view its contents in memory), but with one exception. For some …
0
votes
1answer
759 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 …
0
votes
3answers
96 views
Closing and immediately re-opening a COM port fails: Why?
I'm trying to do 'pre-flight checks' by testing a COM port's 'openability' before launching a dialog window which allows the user to do com-porty things.
Here's the code sequence, in outline:
handle …
0
votes
0answers
281 views
NSFileManager works fine on simulator but not on device
Hi, I have problem creating directories and files with NSFileManager on the iPhone device.
My code, shown below, works fine on the simulator, but not on the device, could you please help me? Gimme …
