UNC Path (Concept): Difference between revisions

From Grooper Wiki
No edit summary
No edit summary
Tag: Manual revert
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<blockquote style="font-size:14pt">
<blockquote>{{#lst:Glossary|UNC Path}}</blockquote>
UNC (Universal Naming Convention) is a standard used in Windows for accessing shared network folders.
</blockquote>


These names consist of a host machine name, a share name, and an optional file path.  Drive letters (C:, D:, etc.) are not used in UNC path names.  UNC paths must be fully qualified, meaning the entire path location must be typed out, starting with the top most directory in the hierarchy (such as the server's name). This disambiguates file and folder locations on one networked machine from another.  The UNC convention for Windows paths is as follows:
These names consist of a [https://en.wikipedia.org/wiki/Hostname host machine name], a share name, and an optional file path.  [https://en.wikipedia.org/wiki/Drive_letter_assignment Drive letters] (C:, D:, etc.) are not used in UNC path names.  UNC paths must be fully qualified, meaning the entire path location must be typed out, starting with the top most directory in the hierarchy (such as the server's name). This disambiguates file and folder locations on one networked machine from another.  The UNC convention for Windows paths is as follows:


<code>\\host-name\share-name\file_path</code>
<code>\\host-name\file_path</code>


It is '''''always''''' best practice to use UNC paths.  Mapped and local drive references may not be accessible to other users or machines.
It is '''''always''''' best practice to use UNC paths.  Mapped and local drive references may not be accessible to other users or machines.
</onlyinclude>
</onlyinclude>

Latest revision as of 10:45, 22 November 2024

UNC Path is a conceptual term that refers to UNC (Universal Naming Convention) which is a standard used in Microsoft Windows for accessing shared network folders.

These names consist of a host machine name, a share name, and an optional file path.  Drive letters (C:, D:, etc.) are not used in UNC path names.  UNC paths must be fully qualified, meaning the entire path location must be typed out, starting with the top most directory in the hierarchy (such as the server's name). This disambiguates file and folder locations on one networked machine from another.  The UNC convention for Windows paths is as follows:

\\host-name\file_path

It is always best practice to use UNC paths. Mapped and local drive references may not be accessible to other users or machines.