FAT short for File Allocation Table is the name of a computer file system architecture and a family of industry standard file systems utilizing it.

learn more… | top users | synonyms

0
votes
1answer
22 views

Editing FatFS generic example for dsPIC

I'm attempting to use FatFS (http://elm-chan.org/fsw/ff/00index_e.html) as a means to communicate with an SD card, using SPI. The FatFS website has a number of examples, however I'm not finding them ...
0
votes
0answers
20 views

Create a FAT source-only jar using Gradle

I need to create a jar that includes dependencies (a FAT jar) using Gradle. The catch: the jar needs to only include the straight .groovy files... no .class files. I've seen the way to do it from ...
0
votes
1answer
46 views

Attempting to create a FAT file system in C++?

I'm attempting to create a FAT file system I understand the basic principle of how its supposed to set up and I'm using a struct like this for each FAT entry struct FATEntry { char name[20]; ...
0
votes
2answers
33 views

Can a FAT filesystem support multiple references to a file?

Can a FAT based file system be modified to support multiple references to a file (i.e. aliases) by using the same FAT block sequence in directory table entries?
0
votes
1answer
30 views

Mark a file as “in use”

I'm developping a "MP3 player"-like USB device. It is seen as a Mass Storage device by the USB host (Windows). I'd like to be able to keep the current song playing while the device is connected. In ...
0
votes
2answers
74 views

clusters, pages, sectors in FAT file system

Im trying to understand the concept of a "cluster" in a FAT filesystem. Specifically what is the relationship between a cluster, a Block, A Sector. My understanding is the following 1) A ...
0
votes
1answer
50 views

What is “fat bundle”?

I hear the slang term "fat bundle" in OSGi context so I am wondering what is the difference between it and the ordinary OSGi bundle?
0
votes
3answers
312 views

converting little endian hex to big endian decimal in C

I am trying to understand and implement a simple file system based on FAT12. I am currently looking at the following snippet of code and its driving me crazy: int getTotalSize(char * mmap) { ...
0
votes
2answers
126 views

ADB PUSH encoding

I'm using adb push to copy files from Windows to my Nexus 7 from command line (from a C# desktop application). The problem is that files with accents won't be copy properly because of encoding ...
1
vote
2answers
217 views

Converting the cluster number stored in FAT table (of FAT12 filesystem) for reading from a floppy disk

I'm writing a two stage bootloader for a FAT12 filesystem. The stage1 of the bootloader loads the stage2 from a floppy disk which is in FAT12 filesystem. Now I am having problem converting the cluster ...
0
votes
0answers
190 views

In android usb-host mode, how to read bytes on a particular index?

I am trying to write an android application to read/write files from connected USB drive (FAT file system).I am able to use android usb host api's to identify endpoints and make a bulk transfer and it ...
0
votes
0answers
41 views

How to scan file system on windows

I'm going to implement get deleted files of file system on the windows. I think that it needs to scan file system in order to get deleted files information. How to scan file using C/C++ languages ...
1
vote
0answers
53 views

SDFatLib for Python?

Scenario: I've got a TTL-JPEG Camera, SD Card Holder Board, and a Synapse RF Module to play with. Trying to combine these 3 devices to create a wireless camera that can shoot videos, store them on ...
0
votes
2answers
105 views

FAT System Identification of free space and structure of entry files?

Been seaching google for a good explanation for how FAT systems identify free space and the structure of FAT Entry files. Alot of the explanations ive found are quite hard to follow can anyone help ...
0
votes
2answers
71 views

Tool to analyse / explore FAT file system

I have a device which writes measurement data to an USB drive (FAT16 formatted). I'm trying to debug an issue where it sometimes writes garbled data to the drive (it creates random looking filenames, ...
0
votes
0answers
21 views

Get back vfat file system support

I am using my machine for Embedded System Development. My kernel version is 3.2.0-23. Yesterday I was attempting to load a new kernel image to the sd card. Accidentally instead of overwriting the ...
0
votes
1answer
52 views

How to build an Android NDK app on FAT

I'm using the FAT32 file system in Linux (as I need to also access it on Windows and OSX), but when I compile with ndk-build I get the error install: setting permissions for ...
0
votes
1answer
78 views

how to distinguish directory and file entry in fat16?

If in fat16 system i am much confused about distinguishing a sub-directory and a file. As sub directory and a file have similar structure, how do we distinguish a directory and a file and how do we ...
0
votes
2answers
110 views

How to traverse a FAT directory, file

I am trying to understand how a FAT file system works. From the attached first sector of FAT 16 partition I could understand, Bytes per sector = 512. Sectors per cluster = 4. FAT 16 file system. ...
1
vote
3answers
31 views

Does FAT disallow undirected cycles?

For educational purposes, I'm rolling my own FAT reader (allows you to browse a drive, etc). My current issue is determining the current working directory (such as for the prompt in a typical command ...
0
votes
0answers
89 views

How to link a real SDcard from a .img file?

I am using an emulator (android) on a Linux box that can read and write a "fake" SD card simulated by a .img file (in vfat). I would like the emulator to access a real SD card (mounted on ...
0
votes
0answers
135 views

What is the use of FAT32 reserved sectors?

I know sector 0 is mostly used for loading the operating system. Some windows versions have bootloadres bigger than 1 sector and use sector 1 and 2 as well. On sector 6 up to 8 is often a backup of ...
2
votes
1answer
2k views

Android SD card filesystem

Long story short - how do I check what filesystem is used on the SD card? I'd like to be able to differentiate between FAT and NTFS.
0
votes
1answer
143 views

implementing open/write function for FAT file system

I have to implement open/write function in the Broadcomd(firmware code) availabel at http://www.broadcom.com/support/communications_processors/downloads.php, I am going through ...
0
votes
0answers
9 views

Custom Sprites through Camera saved in short term memory

I am building an app that involves taking a photo on an iOS device and then allows the user to superimpose this image. I need a way of saving the image to short term memory in the style of fat both ...
0
votes
0answers
104 views

Big DB file support on Android

We all know that Android doesn't support any filesystem for SD cards except FAT. I have huge DB sqlite file (approx. 9 Gb) and I would like to work with the file on my mobile device, but now it's ...
0
votes
0answers
242 views

How to Calculate FAT

I am learning about FAT file system and how to calculate FAT size. Now, I have this question: Consider a disk size is 32 MB and the block size is 1 KB. Calculate the size of FAT16. Now, I know ...
6
votes
4answers
541 views

c# - How can I extract a FAT Disk Image?

I am actually trying to extract a Fat Disk Image with DiskUtils but I am not getting the correct file names... I get "\TURNER~3\TOPPER~1.P~1" in place of "\TURNEROVER\TOPPERSHEATH.PPTX" ...
1
vote
3answers
117 views

FAT 12 Implementation

I have been following the Operating System development tutorial on http://www.brokenthorn.com. Right now I'm trying to setup the BIOS parameter block with this code: jmp loader bpbName db ...
2
votes
1answer
148 views

FAT: List all files in a directory

I'm using Chan's FAT library that seems to provide a standard FAT filesystem API. The API doesn't seem to directly offer to list all the files in a given directory. What is the standard way to list ...
1
vote
1answer
178 views

File creation at the file system level

I am working on the FAT file system code in Linux Kernel 3.3. For a project, I need to create a file at mount time, in the root directory of the mounted filesystem. I've figured out where to write the ...
1
vote
2answers
692 views

Using Sparkfun's MP3 player shield with an Arduino Ethernet Pro - SPI problems

I'm using the Arduino Ethernet Pro board and MP3 player shield from Sparkfun (http://www.sparkfun.com/products/10536 and http://www.sparkfun.com/products/10628) I tried to use the examples provided ...
3
votes
1answer
186 views

File.SetAttributes() not working on USB key as expected

FileAttributes attrs = File.GetAttributes( path); File.SetAttributes( path, FileAttributes.Hidden ); attrs = File.GetAttributes( path); This code snippet works on my NTFS file system ...
-2
votes
1answer
49 views

Do I need FAT on both ends of a USB link?

I have a product consisting of two boxes, both running an RTOS (not picked yet, say FreeRTOS): Box A will have: an SD card and a FAT stack an "external" USB device port with MSD to allow PC access ...
0
votes
1answer
99 views

NTFS and FAT : the difference internally [closed]

I've been searching about this on google, but i get a lot of external information like :it is self healing and more stable etc etc.. Can someone explain the internal workings of the two systems, in ...
2
votes
2answers
239 views

How to share access to a FAT32 Filesystem

I am working on an embedded device that uses an SD-Card for storage and needs to allow a PC to access that SD-Card over USB. The best approach I could come up with is virtualizing the disk and ...
1
vote
2answers
122 views

FILESTREAM in SQL Server 2008 cannot be used on FAT systems?

According to this article: http://technet.microsoft.com/en-us/library/bb933993.aspx the FILESTREAM type is used for NTFS systems. Does that mean it can't be used on FAT systems?
0
votes
1answer
254 views

FAT12/FAT16 - what determines the sector counts? [closed]

Currently i am reading the Ramdisk source code. And in a RamDiskFormatDisk function, i get a problem. A piece of code is as following: if (fatEntries > 4087) { fatType = 16; fatSectorCnt ...
3
votes
2answers
92 views

Weird directory entries in FAT file system

So I'm trying to figure out how the FAT FS works and got confused by the root directory table. I have two files in the partition: test.txt and innit.eh which results in the following table: The ...
2
votes
1answer
235 views

How to build fat gcc46 libstdc++ on OS X?

I have successfully built and installed gcc 4.6.1 on my OS X box, but I can't seem to get it to create a fat/universal libstdc++ library for me. How do I make it do that? The default ...
3
votes
2answers
396 views

Purposefully Corrupting a FAT File System?

Is there a way to purposefully corrupt a FAT file system using only Win32 calls or must you do it at lower level? We're encountering FAT corruption on a WinCE 5.0 device and have written a utility to ...
0
votes
1answer
588 views

Wince 6.0 file system corruption - directories appear to be recursing

We have a mature Wince 6.0 R2 custom device that is capable of downloading files via WiFi and storing them in a NAND flash FAT file system partition. This has been running on over 15000 devices ...
0
votes
1answer
424 views

fat viewer - FAT32 Viewer needed

Can anyone recommend Windows based FAT32 viewer? What I need to see is the map of allocated/free blocks on SD card connected to my PC and it would be nice to see what blocks are allocated for what ...
1
vote
2answers
792 views

Programatically change FAT32 volume serial number

How do I programatically change Volume Serial of a Fat32 partition from C#. I found this example, but it is written with C++ which I don't read well. Could someone please answer a C# code snippet? ...
4
votes
4answers
2k views

OSX Snow Leopard: Build boost 1.47.0 for 32 and 64 bit

I am going crazy...I am currently trying to upgrade boost for my project from 1.44.0 to 1.47.0 on osx snow leopard.- I want to build it with the following command: ./b2 macosx-version=10.6 ...
1
vote
1answer
1k views

SDHC card SPI initialisation

I'm working on an embedded system that currently only supports SDSC v1 cards. As it's getting harder and harder to find cards less than 2 GB, I'm trying to add support for SDHC cards. The ...
0
votes
3answers
265 views

how FAT let me know what to load next cluster hint by file's first cluster?

I am reading brokenthorn's OS Dev tutorial http://www.brokenthorn.com/Resources/OSDev6.html I stuck at this for several days.; to load "stage2.sys", search root directory "stage2 sys". root ...
0
votes
2answers
928 views

How to read FAT Table in Assembly Language

NC - Norton Commander I should write a program like NC. I need to access Fat Table in Assembly to show files and directories in my program. Does anybody know how I can access Fat in assembly( both ...
0
votes
1answer
496 views

C Programming with ARM - Output and input of struct to a file

I am having a bit of a problem with a struct within a program I am writing. Background; I am developing code in C on an ARMv7 chip. The system has an SD card with FAT16 filesystem for file access. I ...
8
votes
3answers
5k views

faking symbolic links on a fat32 formatted storage

I know FAT32, as well as FAT16/12 neither support symbolic links nor hard-links. However I came up with this idea: The FAT specification describes that every file is associated with a ...

1 2