ntfs Questions
4
As described here, using SetFileInformationByHandle with FILE_DISPOSITION_INFO
allows one to set a file with an open handle to be deleted upon all handles being closed.
However, I am trying to del...
Kokaras asked 25/3, 2016 at 9:16
2
Solved
This is a duplicated post since I didn't get any help on askubuntu.com.
I have a 1TB external hard drive that I recently formatted to NTFS. It was mounting on my Ubuntu 11.10 fine until just now. ...
Tasker asked 4/9, 2012 at 15:53
2
Solved
I have got plenty of Windows SDKs installed with Visual Studio. The two directories Program Files (x86)\Microsoft SDKs and Program Files (x86)\Windows Kits take a lot of space (approx. 2 GB). Can I...
7
I have a problem when installing npm modules. NodeJS is installed on Ubuntu 11.10 running on Virtual Box on Windows host. My project files are on NTFS partition (I have to share them with windows)....
1
When sequentially overwriting (in e.g. 8192 bytes aligned and sized blocks) in existing parts of a file (sometimes/always?) WriteFile causes file reads from disk, which totally trashes performance....
3
Solved
I've written an application that examines all of the file system permissions on a directory.
A directory has a number of access rules (of type FileSystemAccessRule).
Each access rule has a proper...
2
Solved
I'm testing a sparse file.
But my test code doesn't work well.
HANDLE h = CreateFileW(L"D:\\sparse.test",
GENERIC_READ|GENERIC_WRITE,
FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
0,
CRE...
Detestation asked 25/10, 2010 at 2:25
1
Solved
I'm trying to have my Java application read all the data in a given path. So files, directories, metadata etc. This also includes one weird thing NTFS has called Alternate Data Stream (ADS).
Appar...
Geese asked 12/10, 2015 at 15:50
5
Solved
How can I use batch to determine if a computer is using FAT32 or NTFS and is this even possible.
Doriandoric asked 9/8, 2011 at 11:57
3
Solved
I am using NTFS partition on linux machine. I want to identify hidden files and folders on my NTFS partition on linux using python.
How can I achieve this using python. Any code snippet / links wo...
Spleeny asked 11/4, 2011 at 9:56
2
Application Description
I have an offline data processing tool. This tool loads hundreds of thousands of files. For each one it performs some calculations and when done writes a single index file....
Guncotton asked 18/2, 2015 at 9:12
2
NTFS files can have object ids. These ids can be set using FSCTL_SET_OBJECT_ID. However, the msdn article says:
Modifying an object identifier can result in the loss of data from portions of a f...
Larrabee asked 9/1, 2015 at 23:20
5
Solved
I am writing a program that should process many small files, say thousands or even millions.
I've been testing that part on 500k files, and the first step was just to iterate a directory which has ...
Tillotson asked 8/1, 2015 at 16:33
3
Solved
I'm just getting started on some programming to handle filenames with non-english names on a WinXP system. I've done some recommended reading on unicode and I think I get the basic idea, but some p...
3
Solved
since Windows Vista there is an new Win32-API call CreateSymbolicLink to create a symbolic link on the NTFS filesystem.
Does anyone know if there is an way to list all existing symbolic links on t...
Policyholder asked 20/3, 2010 at 12:39
2
Solved
I'm trying to apply NTFS permissions that are defined in the 'Advanced' tab of the Windows security settings. One ACL $Rule is for This folder only and another one is for the Subfolders and files o...
Hourigan asked 24/10, 2014 at 7:12
5
Solved
Can anyone recommend a tool for MFT cleanup? I want to in my MFT restore the entries for files which once existed but have been deleted to a "pristine" state, with zeroed out entries.
Spinoza asked 18/4, 2009 at 21:58
2
I have written a backup tool that is able to backup files and images of volumes for Windows. To detect which files have changed I use the Windows Change Journal. I already use the shadow copy funct...
2
Solved
From articles I have found online there appears to be two forms of unique identifiers for files on NTFS:
Using Windows API GetFileInformationByHandle(), we can get access to the struct BY_HANDLE_F...
Plutonian asked 8/10, 2010 at 16:44
2
I found there are some files on my disk, which
1) the real size is not zero, but it is small, around 500 bytes
2) the "size on disk" shows zero when you check its properties
3) if I make the file s...
1
I'm using the following code to obtain information about a file system directory:
LPCTSTR pStrPath = L"D:\\1";
WIN32_FIND_DATA wfd;
HANDLE hDummy = ::FindFirstFile(pStrPath, &wfd);
if(hDummy !...
2
I am trying to write a command line tool that will give IIS7.5 on windows server 2008 write access to a folder in the wwwroot, so that a web application has access to write to a specific folder wit...
Collect asked 7/12, 2010 at 8:42
2
Solved
I need to read and modify the 'Compressed' attribute of a file on an NTFS partition from Java. I imagined something in the java.nio.file.attribute package would do it -- hell it's a complex enough ...
Aloft asked 16/10, 2013 at 11:11
2
Solved
Is the ReplaceFile Windows API a convenience function only, or does it achieve anything beyond what could be coded using multiple calls to MoveFileEx?
I'm currently in the situation where I need t...
Speedometer asked 12/7, 2013 at 8:55
2
I want to use Vagrant but not pollute my machine which I'm working on with n+ VirtualBox machines.
I searched the web but found nothing. What I really want is working on my Laptop and invoking vag...
Angkor asked 16/3, 2013 at 18:59
© 2022 - 2024 — McMap. All rights reserved.