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 directory-entry. In my understanding, one could say that a file-entry in a directory somehow or other points to the file's content.

So what could prevent me from defining two directory-entries which are pointing to the same file-content? If I'm able to do this, please tell me the difference between symbolic links and this hack.

Uli


Edit

I need this for a usb mass storage device to be used in my car radio, in order to fake playlists. So it isn't important to me how windows behaves when doing this.

link|improve this question

What's the use case? Why are you stuck using a FAT32 file system? What system will only support FAT32, but understands symbolic links? – Cody Gray Dec 28 '10 at 11:20
I'm explaining this in my comment on answer 1 – fishbone Dec 28 '10 at 12:27
Did you make any more progress on your testing? I'm trying to do the exact same thing for my car's USB interface, only I want to write a simple GUI to do the work rather than using a hex editor. Shoot me an email if you are still interested in this project (remove all underscores): crush_meguy at yah_oo dot com. – Doug Hill Mar 9 '11 at 5:17
feedback

2 Answers

up vote 2 down vote accepted

What you are talking about ("two directory-entries which are pointing to the same file-content") are hard links. chkdsk will report them as cross-links and break them, "repairing" the files (in fact making the copies).

link|improve this answer
I actually want to do this on a usb-device for usage with my car radio. My idea is to fake playlists since they aren't supported by the device. I could imagine that vendors are using provided drivers - do you think that those drivers implement behavior similar to chkdsk? Do you know how linux is handling this? Do you know a good tool for playing around with this idea? At the moment I'm using a hex editor. – fishbone Dec 28 '10 at 12:15
@fishbone One can only guess, how the specific driver will behave on specific device. Some drivers might have chkdsk built-in but I doubt that they will include "fix" functionality there. However, they can refuse to play the "corrupted" media. Note, that to in order to clarify questions it's better to edit the original question rather than add comments -- this adds readability to the question and immediately attracts attention of those, who read the questions. – Eugene Mayevski 'EldoS Corp Dec 28 '10 at 12:34
The reason why I don't like editing questions is that correct answers will become wrong. I wrote the comment, since i thought chkdsk is a windows-only program, but I never said that I'm going to use windows. – fishbone Dec 28 '10 at 12:47
feedback

This should work for simple issues. I.e. it works as a hack / workaround and I don't know what happens if you rename / move / remove files. So, you should not do this on your main hdd.

I edited the directory-entries manually using a hex editor. I modified clusters as well as file-sizes and successfully faked hardlinks. My car-radio and even Windows (7, 64Bit) have no problems with playing back the original and "hard-linked" mp3-Files I used.

When I'm opening the device again in the hex-editor none of my modifications are changed back (See chkdsk issue in answer #1 - but as far as I know chkdsk has to be started manually, anyways.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.