For example, when I have a package called ‘MyPackage’
then I call this to get the package directory
pathof(MyPackage)
"C:\\Users\\User\\.julia\\packages\\MyPacakge\\ouQ51\\src\\MyPackage.jl"
If I want to paste this into windows explorer i need single backslashes.
Trying ‘replace’ doesnt work
i.e.
replace(pathof(MyPackage),"\\","\")
because the REPL doesn’t think the line is finished when return is pressed.
Tim