How to make ".ini" files invisible?

The “desktop.ini” files I showed in the attached image are created in each folder. My Obsidian Vault folder is in Google Drive. I guess I can’t prevent this file from being created. It’s not very nice this way either, what can I do to make this “.ini files” invisible?

ini files

Things I have tried

What I’m trying to do

1 Like

You can make it hidden via CSS enabled as a code snippet in the appearance panel
this work for a folder

.nav-folder-title[data-path*="logseq"] {
  display: none;
}

in your case should be something like

.nav-file .nav-file-title[data-path*=".ini"] {
  display: none;
}

Hide Files by Extension - Help - Obsidian Forum

5 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.