How to link a local file in Obsidian?
Like a csv file being located on file:////Users/bruno/Dropbox/Obsidian\ Vaults/ClippingContents/statswords.csv
Usually with image or pdf, we would have This is an Image, therefore how to get that csv file location in Obsidian.
Thanks
markdown link will work for you: [filename](file:///<absolute-path>)
for your case it would be [statswords.csv](file:///C:/Users/bruno/Dropbox/Obsidian/Vaults/ClippingContents/statswords.csv)
Note that any whitespace
in the path should be replaced by %20
Also, you can simply type [[
and then start entering filename if it’s below Obsidian vault in the folder structure.
I have tried and it does not seem to work, even though tried to get that file in the vault (either xlsx or csv file) they are both not taken in.
Thanks
Is there a proper way of doing this, because it works whether I use back slashes or forward slashes in everything after file:///
. For example, both of these work:
file:///D:\film\filmname.mp4
and file:///D:/film/filmname.mp4
I just want to ensure that I won’t have to go through all my files later and replace slashes.