Where are the physical font files stored?

When we go Control Panel >> Appearance and Personalization >> Fonts, the window shows a list of fonts currently installed on the system. We can copy those font files out (Ctrl-C) to a new location,

But where are the original physical font files stored?

Based on this thread, I'd thought that the files are stored in C:\Windows\Font, but it seems to be a virtual folder, Specifically when I download TypeLight (runned the program as administrator) and tried to open the font files in C:\Windows\Font, none are listed:

enter image description here


Solution 1:

They are stored in the Windows SxS cache, where hard links are created from. Here is an example (64b):

C:\Windows\WinSxS\amd64_microsoft-windows-f..truetype-arialblack_31bf3856ad364e35_6.2.8250.0_none_cd833951c51cc8e6

Searching C:\Windows\WinSxS for truetype- will give all these folders, searching for *.ttf or *.otf will give all the font files that are stored in that folder. The reason your application doesn't see these files is because it doesn't support the aggregating approach the Control Panel uses. At best you can attempt to type the file name and get around...

For an overview, use dir %SYSTEMROOT%\Fonts.

The Link Shell Extension allows you to enumerate the hard links in the Link Properties tab:

Solution 2:

C:\Windows\Fonts is indeed where the font files are stored (assuming that c:\windows is the operating system root, which is usually the case). You can double-check this by starting a command-line window (type cmd.exe in the Start Menu) and saying:

cd c:\windows\fonts
dir

I suspect that TypeLight is misbehaving, perhaps because Fonts is considered a special folder by the Windows shell.

Solution 3:

Explorer will aggregate font files in C:/Windows/Fonts, making the directory sometimes unintuitive to navigate.

To see the Font hardlinks as files, paste the host address into the Explorer address bar:

\\{ComputerName}\c$\Windows\Fonts

The computer name can be seen by right-clicking This PC on Desktop, and then viewing Properties.

See also: How do I browse fonts as files in Windows Explorer

Solution 4:

I know that this post is old but here's a trick that could help you retrieve your installed fonts files:

First, you need to have 7-zip installed. (It could work with WinRar, though).

Go to your fonts folder (C:\Windows\Fonts) and select the fonts you want to retrieve from the folder. As you have noticed, you cannot drag and drop or copy these files from there as you would from any other folder.

To circumvent this issue, select the fonts, right click them and create a 7z compressed file. Save the file anywhere but there (Downloads folder, perhaps?). Then go to your compressed file, extract your font files and tah dah! :)

EDIT It seems you can drag & drop from the folder to get the files. At least in Windows 10 it is possible. I haven't tried in any other Windows version. ;)