0
votes
3answers
31 views
NTFS alternate data streams
Today I have seen this weird magic NTFS system supports: each file can have multiple data streams. Basically one could have a file a.txt of 0b size but there can be any number of bytes hidden in a …
1
vote
3answers
32 views
how to copy locked files ( Device or resource busy error) on windows xp without admin permissions
Is there is any way I can copy locked files on windows xp machine without having admin rights?
I used unloker tool its great but needs admin rights to install and run.
how it could be done in some …
0
votes
4answers
48 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 base and I have to …
0
votes
2answers
92 views
What is the best way to store downloaded files?
Sorry for the bad title.
I'm saving web pages. I currently use 1 XML file as an index. One element contains file created date (UTC), full URL (w. query string and what not). And the headers in a …
3
votes
4answers
648 views
Has Windows 7 Fixed the 255 Character File Path Limit?
As I understand it, the limitation of 255 characters in a file path is a Windows limitation. What is the reasoning for this? If so, has this been resolved in Windows 7?
In our continuous integration …
2
votes
3answers
911 views
Best distributed filesystem for commodity linux storage farm
I have a lot of spare intel linux servers laying around (hundreds) and want to use them for a distributed file system in a web hosting and file sharing environment. This isn't for a HPC application, …
0
votes
0answers
19 views
mounting minix filesystem on ubuntu [closed]
How can I mount a Minix filesystem in Ubuntu?
I'm trying to do
sudo mount -o loop,offset=1024 -t minix B30M biggy/
and I get
mount: wrong fs type, bad option, bad superblock on /dev/loop0,
…
1
vote
3answers
86 views
Is there a way to get the filename/location information from the MFT of an NTFS volume?
I need to get the list of all the files on a drive. I am using a recursive solution. But it is taking a lot of time. I was wondering that, is it possible to get the names and location of all the files …
0
votes
0answers
22 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 calls which does not …
2
votes
2answers
93 views
How can I use filesystem functions in PHP, using UTF-8 strings?
I can't use mkdir to create folders with UTF-8 characters.
<?php
$dir_name = "Depósito";
mkdir($dir_name );
?>
But, when I browse this folder in Windows Explorer, the folder name looks like …
0
votes
2answers
110 views
SSD as inline cache
This may be slightly off-topic for a strictly programming site, but I'm interested in starting a software project or contributing to an existing project that can do what I'm proposing.
Now that SSD …
2
votes
4answers
32 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 date is: …
0
votes
1answer
56 views
Getting executable file name from handle in Windows x64
I have a c# application that is compiled as x86 so it runs as a 32bit application on Windows 7 x64.
While the application is running, I need to detect the executable name of the active window.
On …
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 computer.
When I …
1
vote
1answer
28 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 discussing this with …
