HFS Plus or HFS+ is a file system developed by Apple to replace the Hierarchical File System (HFS) as the primary file system used in Macs.

learn more… | top users | synonyms

0
votes
2answers
51 views

How to store a hash in extended file attributes on OS X with Java?

Preface I am working on a platform in-depended media database written in java where the media files are identified by a file hash. The user shall be able to move the files around, so I do NOT want to ...
0
votes
0answers
95 views

hfs on linux; reliability

I just bought a Raspberry PI and I want to use it as a network share. Therefore I want to connect my 2 TB USB-drive. But it's formatted by my mac (HFS+) and I want to leave it this way. I know, that ...
2
votes
4answers
94 views

In python on OSX with HFS+ how can I get the correct case of an existing filename?

I am storing data about files that exist on a OSX HFS+ filesystem. I later want to iterate over the stored data and figure out if each file still exists. For my purposes, I care about filename case ...
0
votes
0answers
201 views

Why is EXT4 not capable of hot resizing, but HFS+ is? [closed]

When running Mac OS X, Disk Utility (cli: diskutil) allows you to hot resize HFS+ partitions (HFS+ is the filesystem OS X uses by default). By "hot" I mean that you do not have to unmount the ...
1
vote
1answer
61 views

Is it possible to create a copy-on-write copy of a file on an iOS device?

I need to copy a file that will be modified later on an iOS device. For performance reasons, it would be great if this would work copy-on-write, i.e. the file is not really duplicated, and only ...
1
vote
1answer
186 views

git on mac osx: how to push filename cases to origin?

I have changed the case of some directories in my git repository. Then I pushed them and noticed the cases where not updated. Then I found this question: git mv and only change case of directory I ...
0
votes
0answers
58 views

OSX HFS++ disk thrashing [closed]

I have a process that is doing a lot of disk IO, and it is causing all other processes to stall. I have reniced it to a lower priority but it doesn't make any difference. My understanding of why ...
1
vote
3answers
90 views

OS X - how to calculate normalized file name

I need to create a mapping between file names generated on Windows and OS X. I know that OS X "converts all file names to decomposed Unicode" however, "most volume formats do not follow the exact ...
0
votes
0answers
58 views

HFS or Mac hides the real file name?

I found an interesting feature or bug on OS X 10.7.4 with an case-sensitive Mac OS Extended volume. open Terminal.app and run these two commands: $ touch ...
0
votes
3answers
172 views

where can i find internal structure of HFS and HFS+ in MacOS?

i have a lecture about MacOS file structure. i searched very much in the internet about it but i think MacOS internal structures are secret!! i want informaions about how the data save on hard, in ...
1
vote
0answers
169 views

MacOsX HFS+ corrupts long utf-8 filenames by adding hash sign and number at the end

I'm user of MacOsX 10.6. Some time ago I found that I can't fetch git changes. I did some research and I think the problem lies in UTF-8 chars. I've tried to create new file $ touch ...
1
vote
1answer
338 views

Mounting HFS+ and UDF from a Hybrid Video-DVD

I have developed a Mac software (using DiscRecordingFramework and IOKit) that creates hybrid Video-DVD. The resulting DVD is fully compatible with Video-DVD specifications. The hybrid disc hosts HFS+, ...
0
votes
0answers
45 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
9
votes
2answers
314 views

Check if file system is case-insensitive in Python

Is there a simple way to check in Python if a file system is case insensitive? I'm thinking in particular of file systems like HFS+ (OSX) and NTFS (Windows), where you can access the same file as foo, ...
-4
votes
1answer
296 views

HFS+ Read access in Windows

I need to read and write some files on a HFS+ (Mac) partitioned drive and wondering is there any APIs for that already made, googleing didn't come up with anything. If not, how does one approach this ...
0
votes
1answer
170 views

Extra Attributes of a php created file in OSX 10.6.7

I use a php script to generate a LaTeX file (report.tex) on my local OSX 10.6.7 with MAMP (tThe filesystem is HFS+). Then I use exec() to build the file using LaTex. The .tex is well created on the ...
1
vote
0answers
120 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
2answers
407 views

How to print HFS Volume header

Any one please give code snippet for how to print volume header of HFS+ disk.
0
votes
1answer
803 views

Eclipse project not built on Mac OS X: 'A resource exists with a different case' error

I have some code, I inherited that was previously build on a Linux system. I tried to build it on Mac OS X Snow Leopard. My partition is Mac OS Extended (journaled). I know this is a case insensitive ...
0
votes
1answer
158 views

Is an atomic-rename possible in Mac VFS/HFS+?

With support for ACLs in Mac OS X, there is a way to declare a file as writeable but non-deletable. This poses a problem with atomic writes, since the current implementation of rename in VFS deletes ...
0
votes
1answer
253 views

“writeToFile:atomically:” Fails on File with Certain ACL

If I have a writable file with an ACL-rule of deny delete, any [plistableObject writeFoFile:undeletableFile atomically:YES] call returns NO, whereas non-atomic writes succeed. I know, that the atomic ...
1
vote
1answer
624 views

Git changes files on Mac OS X

I just cloned an old repository containing some linux kernel modules (don't ask). If I clone on a linux machine, everything is fine. On my Mac however, someone (presumably Mac OS X) makes binary ...
3
votes
3answers
225 views

How should git behave when two links to same file are different?

I observed the following behavior while working with the perl code base (on branch maint-5.004): bash-3.2$ git status | grep modified # modified: configure bash-3.2$ git reset --hard HEAD is ...
2
votes
2answers
507 views

How can I receive notifications of filesystem changes in OS X?

In Windows, I can use the FindNextChangeNotification API to watch a file or folder for changes. For example, I can watch a folder and get notified when a file is added or removed. Is there a similar ...