I'm trying to pass string like that "hdfs://some_address/user/folder_with_files" to Paths.get method.
Unfortunately as a result i always get "hdfs:/some_address/user/folder_with_files" instead of "hdfs://.....".
Escape characters doesn't work (////) and I'm restricted to do this with Paths.get method.
Any idea?