Questions tagged [hfs]

Hierarchical File System (HFS) is a proprietary file system developed by Apple Inc. for use in computer systems running Mac OS.

Originally designed for use on floppy and hard disks, it can also be found on read-only media such as CD-ROMs. HFS is also referred to as Mac OS Standard (or, erroneously, "HFS Standard"), while its successor, HFS Plus, is also called Mac OS Extended (or, erroneously, "HFS Extended"). With the introduction of OS X 10.6, Apple has dropped support to format or write HFS disks and images, which are only supported as read-only volumes.

26 questions
1
vote
1 answer

Avoiding username in an HFS file path

I recently put together an AppleScript file which invloves reading a file at one point. The command I am using to do this is: set paragraph_ores to read file "Macintosh HD:Users:MYUSERNAME:Desktop:ORES.txt" using delimiter linefeed Now, whilst this…
Tom
  • 159
  • 1
  • 7
1
vote
1 answer

Hadoop error du: java.util.ConcurrentModificationException

While working on my HDFS cluster, I get this error du: java.util.ConcurrentModificationException whenever I run hdfs dfs -du -h -s /some/path/ A quick check on the Internet and I saw it was bug in Hadoop 2.7.0.
1
vote
2 answers

Checking case sensitive file name HFS

Let's assume that we have a path /path/to/file that is lowercase. Now on the file system the name of the file is /path/to/File. How to check if file has correctly the same name. NSFileManager attributesOfItemAtPath:error: NSFileManager…
patmar
  • 221
  • 1
  • 12
1
vote
1 answer

Mac OS X and Testing Applications on Case Sensitive File Systems

I have two MacBook Pros, but they shipped with a case-insensitive file systems. I would like to test a few of my utilities on a case-sensitive file system. Is there anyway to turn case-sensitivity on per application? Perhaps there is another…
jww
  • 97,681
  • 90
  • 411
  • 885
1
vote
1 answer

How to compute the sparseness of files with holes?

I have in a folder several files which are unfinished torrent files. On a HFS filesystem the du command returns the size of the file as if it has not hole in it. How do you compute the ratio between the empty blocks and the block with actual data…
alecail
  • 3,993
  • 4
  • 33
  • 52
0
votes
0 answers

My external HDD run 1.4 times faster with APFS, should I stick with it?

After doing speed test, my external HDD is 40% faster in data transferring speed after formatted it to APFS from HFS+ or even ExFat. But I hear people saying on the internet that mechanical disk should be formatted with HFS+ and APFS is slower for…
Zui Zui
  • 113
  • 6
0
votes
1 answer

Need command line tools to extract binaries from dmg file on OSX

I am trying to extract certain files from the following dmg: https://kakadusoftware.com/wp-content/uploads/2014/06/KDU802_Demo_Apps_for_MacOS_200113.dmg_.zip I used to be able to extract older versions ${OLD_BINARY} of this dmg using HFSExplorer and…
Jacko
  • 12,665
  • 18
  • 75
  • 126
0
votes
1 answer

Filepath lastPathComponent from HFS or POSIX path

I am on OSX, not iOS, Objective-C I receive external input like this and i need to get the file. Case A (posix path): "path/to/afile.extension" Case B (HFS path): "path:to:afile.extension" In Case A i can get the file with [path…
Pat_Morita
  • 3,355
  • 3
  • 25
  • 36
0
votes
1 answer

Difference between HFS & HFS+ in mac

Ive been searching around for the differences between hfs and hfs+ filesystems for mac computers , And found some info on them, Wondering if any1 can provide me with some sources to gather some info on them or even provide me with some basic info…
stringRay2014
  • 636
  • 1
  • 11
  • 29
0
votes
1 answer

Vagrant. How can I change owner and group of hfs synced folders?

sorry for my poor English knowledge. I use vagrant. Recently I've enabled hfs feature for my synced folder (/srv/www). I've found out that group and owner of synced folder and files within are synced as well. So I try to change owner and group of my…
Timur Fayzrakhmanov
  • 17,967
  • 20
  • 64
  • 95
0
votes
1 answer

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 and objectForKey:NSFileReferenceCount For some…
Graza
  • 5,010
  • 6
  • 32
  • 37
1
2