Tagged Questions

4
votes
1answer
64 views

Smallest FAT32 Partition [closed]

I need to create a small partition image (a few MB) with FAT32 filesystem. I came up some contradictory info on the Internet about the minimum size limit of a FAT32 partition. When I tried to mkfs a ...
2
votes
2answers
74 views

Reading boot sector of a FAT32 file system

I am writing a program and I need to access some information in the boot sector about the FAT32 file system that I have mounted. Here is what I did, fully commented. int main (void) { unsigned ...
1
vote
1answer
190 views

How to read information about File Allocation Table of USB Mass storage device?

I want to read the File Allocation Table of a USB Mass storage device, which has been formatted using FAT32 File System. Can anyone please provide me the details(functions, structs). I'm trying to do ...
0
votes
2answers
54 views

Working with multiple filesystem types: Python won't escape properly?

In short, I'm trying to use distutils.dir_util.copy_tree() to copy data from an ext3 fs to a USB thumbdrive formatted using FAT32. The filenames tend to be long and contain interesting characters - ...
-1
votes
2answers
393 views

How can i dump a FAT32 file system in a USB in windows / Linux platform?

I have one USB stick having FAT32 type file system.I really in need to dump and analyze that file system in the usb stick in windows or in linux platform. My ultimate aim is to read the usb's ...