0
votes
0answers
20 views
/proc/sys/fs/aio-nr is never higher than 1024 (AIO on linux)
I'm trying to use async io on linux. As far as i know there're 3 options:
kernel calls (io_submit and friends)
libRT - uses threads in user space
libRTKAIO - wrapper of kernel c …
0
votes
3answers
33 views
File system regular expression search tool
What is the best tool to make complex (multi-line) regular expression file contents searches with good reporting capabilities?
I need to make a report over large Java/JSP code ba …
0
votes
1answer
20 views
Programmatically modifying a file on Windows Server 2008 (Web Ed.)
I have written a .NET 2008 application, incorporating Microsoft.Office.Interop.Excel, that modifies an existing Excel 2007 spreadsheet. It works perfectly on my WinXP development c …
1
vote
1answer
26 views
Determining cache misses for various filesystems
Hello, I've got a project for school where I have to find out how many cache misses a filesystem will have under heavy and light loads and on a multiple processor machine. After di …
0
votes
1answer
33 views
Is Silverlight a good enough platform for a Web-based operating system?
I do not work with Silverlight personally. However, I still keep an eye out on it. Silverlight 3 and the upcoming 4 has many features that seems would make it a nice web-based oper …
2
votes
4answers
26 views
An XML language for describing file attributes of a directory tree?
I have an application in mind which will record directory listings of a file
system in text form. That is, it should say something like:
File name is: abc.txt
Last modification da …
0
votes
2answers
29 views
Java shell expansion similar to wordexp
Is there a way to do shell wildcard expansion in java similar to the way that the C function call wordexp works? It seems a bit platform specific, but there has to be a nice abstra …
0
votes
0answers
25 views
Why doesn’t “find -print0” work in Cygwin under Vista?
I'm writing a simple shell script:
find datafiles/ -type f -print0 | xargs -0 md5sum > datafiles.md5
In Cygwin under Vista, it just sits there and nothing happens.
It works fine …
1
vote
1answer
28 views
accessing data saved in the iPhone simulator.
I'm working on a game and I'd like to give a non-developer friend a little level editor so they can build levels while I continue working on the development.
I quickly knocked up …
0
votes
0answers
42 views
file systems - theoretical [closed]
Hello guys, i have some theoretical questions which im not clear with, so if someone can explain i would be very grateful, it related to file systems.
Are there, and what are the d …
0
votes
2answers
73 views
How to recursively delete an entire directory with PowerShell V2
What is the simplest way to forcefully delete a directory and all its subdirectories in PowerShell? I am using PowerShell V2 in Windows 7.
I have learned from several sources that …
0
votes
3answers
73 views
How to evaluate a file system?
Hi all,
I 've a question related to design of file systems. These days we are seeing the proliferation of many file systems mostly related to handling large datasets and providing …
0
votes
5answers
262 views
Is this specific path concatenation in Perl code exploitable?
Assume that an attacker controls the variable $untrusted_user_supplied_path . Is the following Perl code exploitable?
my $untrusted_user_supplied_path = ...
if ($untrusted_user_su …
2
votes
2answers
39 views
File create datetime getting duplicated for different files and times
I have written a service that monitors a file drop location for files from a scanner. The scanner drops all files with the exact same file name (eg. Test.tif) unless that file alr …
0
votes
2answers
63 views
How non blocking read/write throught remote FileSystem
Hi,
Is there a way to write and read files on a remote filesystem (such as NFS, SSHFS, or sambafs)
in a way that read or write or even open return immediately with an error code ?
…
