lawinslow / hydrolinks

National Hydrography Network Dataset Tools for R
Other
10 stars 3 forks source link

Weird local_path warnings #6

Closed lawinslow closed 7 years ago

lawinslow commented 7 years ago
> nhdtools:::local_path()
[1] "C:\\Users\\lawinslow\\AppData\\Local\\nhdtools\\nhdtools\\0.4.1"
> set_local_files_path('z:/big_datasets/nhdtools')
> nhdtools:::local_path()
[1] "z:/big_datasets/nhdtools\r\n"
Warning message:
In dir.create(path, recursive = TRUE) :
  cannot create dir 'z:\big_datasets\nhdtools
', reason 'Invalid argument'
> set_local_files_path('z:/big_datasets/nhdtools/')
Warning message:
In dir.create(path, recursive = TRUE) :
  'z:\big_datasets\nhdtools' already exists
> 

Need to investigate to make sure this is working correctly.