#Obsidian [[Obsidianプラグイン]]開発用の型定義ファイル[[obsidian.d.ts]]にしばしば登場する[[クロスプラットフォーム]]で利用できるパスのこと。 [[normalizePath]]という関数が定義されており、[[OS]]固有のパスを引数にして戻り値として得た値を[[normalizedPath]]として利用できる。 ```ts // OS特有のパス const windowsPath = "C:\\hoge\\huga.json" // normalizePathに引数として渡した結果がnormalizedPathとして使える const normalizedPath = normalizePath(windowsPath) // あとはnormalizedPathという名前の引数にぶっこむ ```