Tagged Questions
0
votes
3answers
29 views
How to get notified if a file was modified outside of my program?
A portion of my program has to keep track of a group of files, including their paths and hash codes in the memory.
Problem is, a user might like to edit the file using an external program at any ...
1
vote
2answers
26 views
I'm running a PHP script using WAMP, in this case how can I read files from My Documents?
I have a web application that reads files from its local directory (in wamp/www/). This file needed to be accessed by several users so I synced and shared it using Dropbox. Now, is there a shortcut I ...
10
votes
3answers
137 views
fwrite() alternative for large files on 32-bit system
I'm trying to generate large files (4-8 GB) with C code.
Now I use fopen() with 'wb' parameters to open file binary and fwrite() function in for loop to write bytes to file. I'm writing one byte in ...
-1
votes
2answers
61 views
Combine two .txt files (output into one file) [closed]
How to go about writing code that combines two text files that are on my laptop. Join them together for a single file output. Are the files meant to be opened first in 'r' mode? with combining the ...
0
votes
2answers
33 views
What characters are not allowed in Windows File Names and how can I restrict them from typing in C#
I am trying to let the user save a file with a name entered in a WPF Textbox control. My Requirement is to restrict all the characters which are not allowed inside a file/folder name in Microsoft ...
2
votes
1answer
37 views
Windows simultaneous physical drive access [closed]
I can't seem to find the answer to this question. Can Windows simultaneously read/write to two physically separate disk drives (two drive letters, non RAID)? Obviously you can read/write applications, ...
0
votes
2answers
82 views
Why am I unable to create this file?
Here is my code example:
int main(int argc, char* argv[])
{
char* fileName = "%appdata%\\log.log";
FILE *file;
file = fopen(fileName, "a+");
time_t startTime = time(0);
...
1
vote
2answers
116 views
Extra New Lines When Writing Java File on Linux vs Windows
I have a .txt file that I am writing using Java which has a very specific arrangement of new lines. This arrangement is enforced when I write the file on Windows, but when I run the same code on ...
5
votes
2answers
88 views
Strange behavior from .NET regarding file paths
I couldn't find any information on this through professor Google, so here I am. Take the given path name and paste it into Windows Explorer. I stumbled across this after discovering bug in my code ...
1
vote
1answer
127 views
Get Network path for files in Qt
I am using Qt's QFileDialog to let user add files, but I run into issues adding files from network drives. The path I get from getOpenFileName() function is always local one. So if a network share ...
1
vote
2answers
111 views
Retrieve the number of opened file descriptors using the Windows API
I would like to know how many file descriptors have I opened in my C++ application. Can this be done using Windows API function?
0
votes
1answer
49 views
I/O completion port silently fails to read completely
I'm developing a program that needs to write a large amout of data to disk then read back much smaller amount of data back later on. It needs to "bin" related data together then once it figures out ...
0
votes
1answer
67 views
Skip over padding in a bitmap-to-string converter?
I have the following algorithm for converting a 24-bit bitmap to a hexadecimal string representation of the pixels it is composed of:
// *data = previously returned data from a call to GetDIBits
// ...
-2
votes
1answer
133 views
Copy file that is being used by another process
I would like to clone and use a file that is being opened/used by another process. Is this actually impossible at all ?
I would like to copy the file content perhaps ...
4
votes
0answers
92 views
Reading a file from a network share sets its creation time to its last write time
When I read a file from a network share it updates the creation time to the last write time. This causes me problems with System.Configuration.Configuration because it thinks the file has changed and ...
6
votes
2answers
170 views
The use of “r+” in fopen on windows vs linux
I was toying around with some code which was opening, reading, and modifying a text file. A quick (simplified) example would be:
#include <stdio.h>
int main()
{
FILE * fp = ...
3
votes
1answer
71 views
Why does the data in a bitmap go out of scope?
I am creating a save game manager for Skyrim and have run into an issue. When I create a SaveGame object by itself, the bitmap portion of the save works correctly. When I call that method in a loop, ...
0
votes
1answer
41 views
What if I call CloseHandle(h) before an asynchronous read on handle h has not finished?
Consider the following scenario:
auto h = CreateFile(...);
ReadFileEx(h, ...); // Asynchronous read for a large block of data. say, 1GB.
CloseHandle(h);
// If the read has not yet finished here, ...
1
vote
1answer
46 views
When checking for file write permissions, what is the relation between FILE_ATTRIBUTE_READONLY and using access control lists?
For example, on the one hand, I can check
if a file can be written to by building up a security identifier for a user,
establishing a trustee,
getting a discrete access control list and
then ...
0
votes
2answers
57 views
How can I improve the error reporting of this C open call in Windows?
As it stands the code looks like this:
fd = open(filename, openflag, perm);
I then call perror on open and receive
open: No error
open: No error
open: No error
open: No error
The final error ...
2
votes
4answers
117 views
Mixing read() and write() on Python files in Windows
It appears that a write() immediately following a read() on a file opened with r+ (or r+b) permissions in Windows doesn't update the file.
Assume there is a file testfile.txt in the current directory ...
0
votes
1answer
167 views
Get extended properties of a file on a network share
I'm trying to read extended properties from music files on a network share (Author, Album, etc.)
This line (adapted from code at Read/Write 'Extended' file properties (C#))
objFolder = ...
3
votes
2answers
434 views
C++ WinApi: ReadDirectoryChangesW() Receiving Double Notifications
I try to understand ReadDirectoryChangesW function so I can be effectively informed on change of content in several directories (files overwritten, files deleted, renamed, etc..).
One of my recent ...
1
vote
2answers
147 views
Updating a file's timestamp on Windows from Java
I am dealing with a file in Java that is used to hold serialized objects. In order to determine if the process that is writing to this file has timed out, I check the lastModified() method on the ...
1
vote
3answers
190 views
Creating Virtual Folders and hooking them into the file system
I have a big collection of folders for projects I'm working on. I've been trying to find a better way to sort them all for a long time and I want to write an app that creates groups based on whatever ...
8
votes
6answers
466 views
Transactional handling of text files on Windows
I have multiple Windows programs (running on Windows 2000, XP and 7), which handle text files of different formats (csv, tsv, ini and xml). It is very important not to corrupt the content of these ...
1
vote
0answers
85 views
File remaining locked in Windows after Java File.canWrite() returning true and all close() methods called
I'm using a WatchService to check for the addition of a file to a directory. A listener then gets an input stream from the file in the form of a ByteBuffer wrapped in a custom class (See below).
The ...
3
votes
1answer
59 views
What's a programmatic way to detect if a file is opened in Windows?
Is there a simple way to detect if a file is opened in any process in Windows?
For example, I am monitoring a directory and if files are placed into the directory, I want to perform some actions on ...
0
votes
1answer
121 views
reading tiff images on windows
I want to read tiff images in C (windows 64 bit, visual studio 2008). Is there a place where I can get compiled library for libtiff 64bit? The one available at http://bigtiff.org/libtiff.lib-4.1.zip, ...
1
vote
1answer
76 views
How to get list of all valid folder and file characters for Windows file system paths in .Net
System.IO.Path.GetInvalidPathChars() gives list of invalid characters.
But I need to have list of all valid characters.
First and simple idea that comes into mind is to iterate from 0 to 255 and ...
0
votes
1answer
127 views
Another winapi file permissions C head-scratcher. Why isn't my method working?
I'm really scratching my head over how to correctly use the windows api to determine file permissions. I have seen so many posts on this, but I just can't seem to get it right. Specifically, I would ...
-5
votes
1answer
91 views
I can't create a file in Java [closed]
I am trying to create a file in Java in Windows platform. The code's below :
import java.io.*;
public class FileTest{
public static void main(String[] args) throws IOException{
...
-2
votes
3answers
545 views
Require once error in config.php file [closed]
I have a php site which I tried to run on my xampp localhost, I have windows vista x64.
I installed it accordingly as required and uploaded all files into jax folder within htdocs folder. But when I ...
7
votes
2answers
1k views
IOError: [Errno 13] Permission denied when trying to open hidden file in “w” mode
I want to replace the contents of a hidden file, so I attempted to open it in w mode so it would be erased/truncated:
>>> import os
>>> ini_path = '.picasa.ini'
>>> ...
1
vote
1answer
106 views
Let user choose the application to open the file
I need my java code to open a file based upon the default application. Thanks to
How to open user system preffered editor for given file? which suggests a quality method to do it by
...
0
votes
4answers
253 views
Windows 7 Python 3.2 file not found on open
I have the following Python 3.2 script:
f = open('C:/foo/bar/baz/text.txt')
this causes a file not found exception:
ileNotFoundError: [Errno 2] No such file or directory: ...
3
votes
1answer
520 views
UNC path pointing to local directory much slower than local access
Some code I'm working with occasionally needs to refer to long UNC paths (e.g. \\?\UNC\MachineName\Path), but we've discovered that no matter where the directory is located, even on the same machine, ...
0
votes
6answers
297 views
Java and Windows - error: illegal escape character
I have done my .java file that changes registry data. But I am getting "illegal escape character" error on the line where Runtime.getRuntime().exec exists. Where is my mistake ?
import java.util.*;
...
0
votes
2answers
181 views
How to get file last modified time with Perl 5.004 and no modules
I have a standalone version of perl for Windows (5.004) that does not include any modules. I want to run a script to check the last modified time of several files.
I could use File::stat but that ...
1
vote
1answer
121 views
How do I seek beyond end of existing file?
how do I seek beyond end of existing file ?
Consider I have test.bin which is 1000 bytes.
Then I run following
std::filebuf fbuf;
fbuf.open("c:\\test.bin", std::ios_base::in | std::ios_base::out | ...
0
votes
1answer
48 views
Keeping a latent file-handle
I am writing a time-critical application in C++ where I write data to a log which is constantly displayed and updated in the web-browser (I can't change this, please do not recommend to use a ...
0
votes
1answer
155 views
Can't make file writeable in java under Windows
Please advice. I expect this to allow all system users to be able to change file content or delete it:
File file = new File("sample/sample.txt");
file.setWritable(true, false);
Java itself runs ...
0
votes
1answer
65 views
How do I debug lower level File access exceptions/crashes in C++ unmanaged code?
I'm currently working on trying to resolve a crash/exception on an unmanaged C++ application.
The application crashes with some predicatibility. The program basically
process a high volume of files ...
0
votes
1answer
38 views
Notepad style loading of a large file on windows
I have noticed that notepad can take a very long time to load a large where it appears to be completely unresponsive but the file handle only seems to be active for a very short period of time during ...
0
votes
1answer
39 views
Unique constraint violation in DataSet for Directory.GetFiles
Here's what my code does:
Use directory.getFiles() to get a list of files matching a specific pattern(including file extension)
Take this list of files and add it to a table in a typed dataset. The ...
1
vote
2answers
188 views
Is there anyway to do an asynchronous FindNextFile?
On a large folder (~300,000 objects) FindNextFile can take up to 20 secs to respond with just a single file. I assume there's some bulk operation going on in the background but it makes the operation ...
0
votes
1answer
142 views
Manage Windows directory using batch(sorting and deleting)
I want to create a batch file that will sort the files(based on created date) in a directory and only keep x number of the most recent files.
The files also have a date/time in their names(ie. ...
2
votes
1answer
480 views
Get file offset on disk/cluster number
I need to get any information about where the file is physically located on the NTFS disk. Absolute offset, cluster ID..anything.
I need to scan the disk twice, once to get allocated files and one ...
3
votes
1answer
831 views
IOError: [Errno 13] Permission denied, While opening a file
I have a Python script which looks for any changes in a folder(addition/deletion) of files.
I am looking for any new files added and wants to open them and read some data from them.
The code is
# ...
1
vote
0answers
186 views
writev on windows
Does Windows offer anything similar to writev in a non Cygwin environment?
Ideally, an answer would have a working example for windows, something along the lines of:
#include <sys/types.h>
...


