ntfs Questions
2
Solved
I've got pretty unusual request:
I would like to load all files from specific folder (so far easy). I need something with very small memory footprint.
Now it gets complicated (at least for me). I ...
0
When doing a conversion from a SID to an NTAccount, I use the following code:
DirectorySecurity folder_sec = Directory.GetAccessControl("c:\\test", AccessControlSections.All);
AuthorizationRuleCol...
Hypochlorite asked 6/2, 2013 at 13:27
1
Solved
I'm currently working on a cross platform application that uses extended file attributes for storing it's own file ownership information (uid, gid) outside of the normal filesystem ownership. This ...
Brannan asked 6/2, 2013 at 5:15
1
Solved
Continuing my previous question, I was able to use this delphi unit to implement crazy FAST drive scan using this EnumMFTEntries() function, but I have trouble doing the following tasks:
Task #1: ...
Bullfighter asked 25/1, 2013 at 17:21
0
I'm seeking to use Change Journal instead of ReadDirectoryChangesW to track changes in my delphi XE2 application (as for why: ReadDirectoryChangesW is not that reliable)
The closest I could find i...
Pleiades asked 24/1, 2013 at 8:13
5
Solved
How can I read and modify "NTFS Alternate Data Streams" using .NET?
It seems there is no native .NET support for it. Which Win32 API's would I use? Also, how would I use them, as I ...
Vincenz asked 3/3, 2009 at 3:11
0
I've run the following test I've created a folder containing 15'000 files of 400 bytes using this batch :
@ECHO off
SET times=15000
FOR /L %%i IN (1,1,%times%) DO (
fsutil file createnew f...
Wendelin asked 12/12, 2012 at 11:3
3
Solved
Sorry, I know this sounds like a newbie question. But seriously, I'm an experienced developer, and I understand that Windows 7 Pro 64-bit and the like will say, "Oh, if you move an NTFS tree ...
1
Solved
I would like to provide a way to recognize when a large file is fragmented to a certain extent, and alert the user when they should perform a defragmentation. In addition, I'd like to show them a v...
Binky asked 5/10, 2012 at 18:3
3
Solved
What are the default NTFS security settings of the C:\Windows\Temp folder in Windows 7?
6
Solved
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 ...
Subclavian asked 27/11, 2009 at 16:47
1
Solved
I have an issue where I need to add give access to a folder for all authenticated users to store application related settings. I have found that this can be done with the below code...
var Info = ...
Marcos asked 13/7, 2012 at 21:59
2
Solved
After installing MacFUSE and opening system Preferences -> MacFuse
it looks like that it is not compatible with Mac lion and says:
MacFUSE does not appear to be installed
Any solution to that?...
2
Solved
There is CreateHardLink function to create Hardlinks.(Since Win2000)
And there is CreateSymbolicLink function since Vista has been released.
But why isn't there a CreateJunction?
How does mklink ...
Murtha asked 1/9, 2010 at 4:56
5
Solved
Is there a tool that would show me for a specific file on disk, how fragmented it is? (How many seeks does physical disk need to make if I were to read that file in a linear fashion)
Bedel asked 13/5, 2010 at 23:10
3
Solved
I have to explicitly test the case what my application does if it tries to access some corrupted part of an NTFS file system. I looked around for similar questions but those were about corrupting s...
2
Solved
I'm currently working on a migration from svn to mercurial. My needs are plain and simple, I need source control over an intranet in our company. I see examples everywhere for setupping remote repo...
2
I'm looking for the .NET/C# way of performing Change Journal Operations (without importing unmanaged code).
Any hints or RTM-links?
4
Solved
I need to know if there is an easy way of detecting only the files that were deleted, modified or created on an NTFS volume.
I have written a program for offsite backup in C++. After the first ba...
1
Solved
How do I set NTFS permissions in C#.NET? I am trying to change permissions for read/write in .NET. I'm a newbie, please assist!
Cupp asked 17/9, 2011 at 1:27
1
Solved
I maintain an application that collects data from a datalogger and appends that data to the end of a binary file. The nature of this system is that the file can grow large (> 4 gigabytes) small ste...
3
Solved
How can I compact files (set the 'c' attribute) from Delphi? I am speaking about the "compress contents to save disk space" function available under NTFS.
It seems that FileSetAttr does not allow ...
Devoted asked 9/8, 2011 at 20:32
3
Solved
The application I am writing needs to be able to copy files that are locked. We attempted to use Volume Shadow Copy, and while it was successful in copying the file, the application that had the lo...
Hobbie asked 6/6, 2011 at 20:32
2
Solved
I'm trying to overcome the following situation.
Given a directory stored on an NTFS volume, where:
The directory owner is set to someone else (a non-privileged user for example)
The directory DA...
Hoes asked 9/3, 2011 at 5:24
1
I like the Vista style for pathing, so on a XP machine I've created NTFS junctions C:\Users -> C:\Documents and Settings and ~\Documents -> ~\My Documents, so that I only ever have to write one sty...
Houlberg asked 20/4, 2011 at 18:54
© 2022 - 2024 — McMap. All rights reserved.