FilePathsBase.jl icon indicating copy to clipboard operation
FilePathsBase.jl copied to clipboard

Windows network path support?

Open eitsupi opened this issue 3 years ago • 2 comments

Hello. Sorry if this was not the proper place to submit this issue.

I tried to read a Parquet dataset on a network drive using Parquet2.jl, but it did not work.

using FilePathsBase
using Parquet2: Dataset

ds = Dataset("//path/to/file")

Perhaps paths on Windows network drives are not supported?

eitsupi avatar Jan 11 '23 15:01 eitsupi

Yeah, there's an open MR to support UNC paths. I don't use windows regularly, so you might want to comment on this MR https://github.com/rofinn/FilePathsBase.jl/pull/12

rofinn avatar Feb 09 '23 16:02 rofinn

Fwiw, mapping a drive letter to the network location is a possible workaround (I understand it might not be applicable in all cases).

DrChainsaw avatar Sep 14 '23 08:09 DrChainsaw