Borrar filtros
Borrar filtros

Nonsense string needed to access network path: \\?\UNC\

9 visualizaciones (últimos 30 días)
bransa
bransa el 28 de Jul. de 2023
Comentada: bransa el 28 de Ag. de 2023
I am running an analysis in paralell on a handful of machines.
  • The machines all have the same access to the server with the data.
  • On the problem machine, the files can only be read or written when I append a (seemingly) nonsense string to the beginning of the path.
  • This does not apply to the logfile.txt, but to pngs, csvs, and mat-files.
  • I discovered what the magic string was when I used "Copy as path" in the file explorer and pasted directly into the load function.
  • This is the only machine running R2022b and not R2023a
I suspect it has something to do with not being able to interpret the file as -ascii and not comm issues with the network, since the txt file is . Is this a known issue?
try
load(fullfile(filepath,filename),"-mat")
catch
filepath_original = filepath;
filepath = strrep(filepath,'\\m','\\?\UNC\m');
end

Respuesta aceptada

Arka
Arka el 14 de Ag. de 2023
Hi Bransa,
From what I understand, you have to add the string "\\?\UNC\" to the beginning of the path of the file for it to be successfully read on MATLAB R2022b.
The prefix "\\?\UNC\" is a Windows file path prefix, used to access files and directories on a network shared drive using the Universal Naming Convention (UNC) format.
In UNC, a network resource is identified by its network name or IP address, followed by the path to the shared resource. The "\\?\UNC\" prefix is used to bypass the path length limitations in Windows, allowing us to specify paths longer than the 260-character limit enforced by Windows.
Hope this helps.
Thank you.

Más respuestas (0)

Categorías

Más información sobre Manage Products en Help Center y File Exchange.

Productos


Versión

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by