Tagged Questions

NTFS (New Technology File System) is a file system of Windows.

learn more… | top users | synonyms

33
votes
5answers
12k views

NTFS performance and large volumes of files and directories

How does Windows with NTFS perform with large volumes of files and directories? Is there any guidance around limits of files or directories you can place in a single directory before you run into ...
25
votes
8answers
68k views

Maximum filename length in NTFS (Windows XP and Windows Vista)?

I'm designing a database table which will hold filenames of uploaded files. What is the maximum length of a filename in NTFS as used by Windows XP or Vista?
15
votes
6answers
7k views

Windows XP vs Vista: NTFS Junction points

Problem: I relied heavily on NTFS Junction points in Windows XP, even though they apparently were not an "official" feature of the operating system. Now MSFT has generously made NTFS Junction points ...
12
votes
3answers
566 views

How do I copy a locked file directly from the disk and make sure that the file is intact?

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 lock ...
11
votes
5answers
770 views

Any real-world, enterprise-grade experience with Transactional NTFS (TxF)?

Background: I am aware of this SO question about Transactional NTFS (TxF) and this article describing how to use it, but I am looking for real-world experience with a reasonably high-volume ...
11
votes
13answers
2k views

How do you deal with lots of small files?

A product that I am working on collects several thousand readings a day and stores them as 64k binary files on a NTFS partition (Windows XP). After a year in production there is over 300000 files in ...
8
votes
12answers
589 views

Storing a million images

I have a project that will generate a huge number of images. Around 1,000,000 for start. They are not large images so I will store them all on one machine at start. How do you recommended on ...
7
votes
1answer
124 views

Check if file system is case-insensitive in Python

Is there a simple way to check in Python if a file system is case insensitive? I'm thinking in particular of file systems like HFS+ (OSX) and NTFS (Windows), where you can access the same file as foo, ...
7
votes
3answers
227 views

How can I set a file's compression attribute in Delphi?

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 me ...
7
votes
9answers
1k views

C++/Win32: How to wait for a pending delete to complete?

Solved: * Workable Solution: @sbi * Explanation for what really happens: @Hans * Explanation for why OpenFile doesn't pass through "DELETE PENDING": @Benjamin The Problem: Our software is in large ...
7
votes
4answers
574 views

Is it easier to write filesystem drivers in userspace than in kernel space?

I will use the Linux NTFS driver as an example. The Linux kernel NTFS driver only has very limited write support in the kernel, and after 5 years it is still considered experimental. The same ...
7
votes
2answers
2k views

What encoding are filenames in NTFS stored as?

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 ...
6
votes
1answer
210 views

What part of Perl does not like NTFS Junctions?

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 style ...
6
votes
1answer
120 views

What happens when I DllImport a function that is not available on the runtime platform?

I previously asked, How to determine the target of a symbolic link or Reparse Point? ...and got an answer that suggested the use of the Win32 function GetFinalPathNameByHandle, a function first ...
6
votes
3answers
1k views

Directory Traversal in C#

How do you traverse a folder structure using C# without falling into the trap of junction points?
5
votes
3answers
1k views

How to check for hidden files & folders on NTFS partition using python on linux?

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 would ...
5
votes
2answers
1k views

Taking ownership of files with 'broken' permissions

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 DACL ...
5
votes
1answer
333 views

NTFS Junctions vs. Symbolic Links (for directories)

From a high-level standpoint (meaning only worrying about the results and the interface, not the implementation), what is the difference in behavior, if any, between an NTFS reparse point that points ...
5
votes
1answer
611 views

Change Journal for Blocks in Windows(NTFS)

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 ...
5
votes
1answer
398 views

How to create a sparse file on NTFS?

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, ...
5
votes
3answers
1k views

In .NET, How to obtain the target of a symbolic link (or Reparse Point)?

In .NET, I think I can determine if a file is a symbolic link by calling System.IO.File.GetAttributes(), and checking for the ReparsePoint bit. like so: var a = ...
5
votes
4answers
537 views

Is there any length-limits of file path in NTFS?

Why can not I create a deep path whose characters in path is more than 255 in NTFS File System? It seems a limits of FAT32, but also exist in NTFS? Can anyone provide some documents? Many Thanks!
5
votes
1answer
1k views

In .NET, how do I Create a Junction in NTFS, as opposed to a Symlink?

I'm trying to create an NTFS Junction. From the cmd line I can do this using the junction.exe tool from sysinternals. The output of a DIR cmd for a junction looks like this: Volume in drive C has ...
5
votes
2answers
443 views

.net durable resource manager for transactional filesystem access

I'm trying to wrap my head around the use of the System.Transactions namespace in C#. I've found some documentation on MSDN regarding using resource managers, but it only covers volatile, in-memory ...
5
votes
3answers
2k views

Delphi 2009 classes / components to read/write file permissions

Does anyone have a set of classes / components that will work with Delphi 2009 (Unicode) to read and write NTFS file permissions? There was a thing called "NTSet" - but they stopped development at ...
5
votes
6answers
2k views

is there something like alternate data streams on any linux filesystem?

On NTFS there is a nice but mostly unused feature called "Alternate Data Streams" (ADS) which I recently used in a hobby-dev project. I am thinking of porting this project to Linux, but I do not ...
5
votes
8answers
1k views

How to see if a subfile of a directory has changed

In Windows, is there an easy way to tell if a folder has a subfile that has changed? I verified, and the last modified date on the folder does not get updated when a subfile changes. Is there a ...
4
votes
1answer
42 views

How to get an NTFS file's total size (including security and ADS)?

I'm having difficulties to find a way (if there is any) to get the total file size of a windows (NTFS) file. What I'm trying to get is the size of the file including alternate data streams and ...
4
votes
3answers
106 views

Intentionally corrupt the file system

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 ...
4
votes
1answer
111 views

What factors can lead to Win32 error 665 (file system limitation)?

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 steps ...
4
votes
3answers
150 views

Any way to work around the PathTooLongException that FileSystemInfo.Fullname throws sometimes?

I have files on my hard drive that throw a PathTooLongException when I access the Fullname property of a FileSystemInfo object. Is there any way around this (excluding renaming the files which is not ...
4
votes
3answers
136 views

JFileChooser and NTFS JunctionPoints / Symlinks?

The JFileChooser in Swing (Java 1.6.0_u25) doesn't seem to know how to deal with NTFS Junction Points or Symbolic Links. The file chooser has no special handling: int rv = ...
4
votes
2answers
407 views

How do the UNIX commands mv and rm work with open files?

If I am reading a file stored on an NTFS filesystem, and I try to move/rename that file while it is still being read, I am prevented from doing so. If I try this on a UNIX filesystem such as EXT3, it ...
4
votes
1answer
136 views

Mercurial and NTFS Alternate data stream

How does Mercurial handle Alternate Data Streams (in the NTFS file system)? If it can't handle that, is there a DCVS that does? EDIT: When I change version with update, what happens to the ADS ? Is ...
4
votes
3answers
317 views

Large scale image storage

I will likely be involved in a project where an important component is a storage for a large number of files (in this case images, but it should just act as a file storage). Number of incoming files ...
4
votes
2answers
158 views

How Do you set MOTW on an Executable

How do you set MOTW (Mark of the Web) on an executable that is downloaded from the internet?
4
votes
4answers
419 views

NTFS directory has 100K entries. How much performance boost if spread over 100 subdirectories?

Context We have a homegrown filesystem-backed caching library. We currently have performance problems with one installation due to large number of entries (e.g. up to 100,000). The problem: we store ...
4
votes
6answers
245 views

How to avoid hard disc fragmentation?

I'm writing an application that will make millions of calculations and will store the results in a lot of files in the disc. Potentially I can have thousand of files, of different sizes, and store ...
4
votes
2answers
240 views

NTFS Filesystem Time

I tested this on windows xp. If I do Create a file. Write to the file. Close the file.(Then, the file's LastWriteTime is changed) But if I do Create a file. Set LastFileTime of the file. ...
4
votes
4answers
411 views

fastest way to crawl recursive ntfs directories in C++

I have written a small crawler to scan and resort directory structures. It based on dirent(which is a small wrapper around FindNextFileA) In my first benchmarks it is surprisingy slow: around ...
4
votes
2answers
210 views

Is File.Delete() atomic under .NET

Target OS: Win2003 As posted in other SO questions about file operation atomicity, Win32 was simply not designed for transactions. Still I wonder whether file deletion could be non-atomic. After ...
4
votes
8answers
560 views

NTFS Alternate Data Streams - Good or bad Idea?

I would like to store some Application-Related Metadata for Files, and NTFS Alternate Data Streams (AltDS) would allow me to store this metadata directly on the files rather than in a separate ...
4
votes
3answers
1k views

Create NTFS junction point in Python

Is there a way to create an NTFS junction point in Python? I know I can call the junction utility, but it would be better not to rely on external tools.
4
votes
4answers
2k views

A reliable way to determine if ntfs permissions were inherited

I have a somewhat obscure question here. What I need: To determine if the permissions (or, strictly speaking, a specific ACE of a DACL) of a file/folder was inherited. How I tried to solve this: ...
4
votes
4answers
2k views

Compress a folder using NTFS compression in .NET

I want to compress a folder using NTFS compression in .NET. I found this post, but it does not work. It throws an exception ("Invalid Parameter"). DirectoryInfo directoryInfo = new DirectoryInfo( ...
4
votes
6answers
3k views

NTFS Alternate Data Streams - .NET

How would I create/ delete/ read/ write/ NTFS alternate data streams from .NET? If there is no native .NET support, which Win32 API's would I use? Also, how would I use them, as I don't think this ...
4
votes
3answers
2k views

Best file system to transfer 5+GB files between OS X and Windows on removable media

I need to transfer DVD image files between a Windows XP computer and a Mac running Leopard. The machines are not connected via a fast network, and I have a few USB drives floating around that I want ...
4
votes
2answers
606 views

Change journal operations in .NET?

I'm looking for the .NET/C# way of performing Change Journal Operations (without importing unmanaged code). Any hints or RTFM-links?
4
votes
3answers
158 views

Any way to ignore files coming from the repository for NTFS?

Ok, so at some point in time, somebody checked in some files with names that require a case sensitive file system into the trunk of a repository that I constantly check out. This of course leads to ...
3
votes
1answer
92 views

How to get the file handle in vb .net

I want to use the GetFileInformationByHandle function under kernel32.dll in order to get the NTFS unique file identifier. The function declaration is like this : Declare Auto Function ...

1 2 3 4 5 6