Tagged Questions

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 ...
3
votes
2answers
2k views

Max files per directory on NTFS vol vs FAT32 [closed]

What's the max number of files that can be present in a directory on a NTFS volume? Same question for a directory for FAT32 volume?
2
votes
3answers
87 views

How can I use batch to determine if a computer is using FAT32 or NTFS?

How can I use batch to determine if a computer is using FAT32 or NTFS and is this even possible.
2
votes
3answers
139 views

How can I create a file with invalid Windows timestamps?

I'd like to create a file with an invalid created/modified/accessed timestamp to use in unit tests to ensure that my application can handle files with invalid timestamps. It's a Windows application ...
1
vote
1answer
75 views

Check for type of file system in an MSI package

In my MSI package I need to set user rights to a directory using cacls.exe. It works fine in an NTFS environment but fails when run on a Fat32 file system. Is there a method to determine the type of ...
1
vote
2answers
755 views

How can I find information about a file from logical cluster number in NTFS/FAT32?

I am trying to defragment a single file through Windows defragmentation API ( http://msdn.microsoft.com/en-us/library/aa363911(VS.85).aspx ) but if there is no free space block large enough for my ...
0
votes
1answer
109 views

File permissions using cacls, icals for USB drive in FAT format?

I'm creating a desktop application. This application runs only if its in USB drive. In my application i used MS DOS commands like cacls, icals for giving access permission. My problem is, these ...
0
votes
1answer
73 views

Modify Date Created Attribute

How to modify "Date Created" attribute of files and folders in FAT32 and NTFS using .NET?
0
votes
2answers
244 views

how can i access the file sytem and sector of harddisk by c++?

How can i read sector of HD and access to file syetem and block or cluster of a file, list of bad blocks(FAT) or cluster file(NTFS)? Or access list of free blocks(FAT) or cluster bitmap(NTFS)?
0
votes
1answer
107 views

What is the difference between File.SetCreationTime() and File.SetCreationTimeUtc()

In particular, is there any difference between these two lines in terms of their outcomes: File.SetCreationTime("foo.txt", DateTime.UtcNow); File.SetCreationTimeUtc("foo.txt", DateTime.UtcNow); ...
0
votes
4answers
377 views

The FAT, Linux, and NTFS file systems

I heard that the NTFS file system is basically a b-tree. Is that true? What about the other file systems? What kind of trees are they? Also, how is FAT32 different from FAT16? What kind of tree are ...
0
votes
3answers
844 views

Command to truncate all filenames at 255 characters

An NTFS directory is open in a bash shell. what command will recursively truncate all filenames in a directory to the 255 character limit required for ext3?