Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
253 views

How does one map physical sectors of a disk to the files that contain them on an HFS+ volume on Mac OS X

I've been recovering a hard disk using dd_rescue, which provides me a list of all of the device sectors it could not copy due to hardware errors. I'd like to take that list, and write a tool to give ...
1
vote
1answer
54 views

using c# to open an image using hfs file system

Seems like an odd request. I want to take in an image file probably a .dmg or a .bin, which uses HFS file system. Ideally id like to mount the image because all i need to do is get certain files from ...
1
vote
1answer
87 views

Show icon for creator code on OSX

How could I display a custom icon depending on a files creator code/type code. For example I have an application that opens files with the creator code 'TSTx', how would I set the icon for that ...
1
vote
0answers
52 views

How to print HFS journal info

I am trying to print HFS journal info. I am able to print successfully the journal header. but unable to print the block_list(journal Buffer). Any help would be appreciated .......
1
vote
3answers
576 views

Rsync bash script and hard linking files

I am creating a bash script to backup my files with rsync. Backups all come from a single directory. I only want new or modified files to be backed up. Currently, I am telling rsync to backup the ...
0
votes
1answer
34 views

kqueues on Mac OS X: strange event order

I monitor a file for changes in a separate thread using kqueues/ kevent(2). (I monitor a Python file for reparsing) I subscribe as following: EV_SET(&file_change, pyFileP, EVFILT_VNODE, ...
0
votes
0answers
16 views

How to determine a deleted file nodes in macosx

I have written code to parse the HFS+ file system, am able to parse catalog btree. But how to find the node of the file which is deleted? Can someone advice the process
0
votes
1answer
189 views

Why are there more files/hardlinks with the same iNode than the reference count shows?

I have recursed a folder on a single volume, and retrieved a list of filenames, reference-counts and inode numbers, using NSFileManager attributesOfItemAtPath and NSDictionary fileSystemFileNumber ...