From 158303a52dac65c38f1ddbf5b2e4fbf0e7ae55bb Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 20 Mar 2003 17:42:48 +0000 Subject: [PATCH] - explain what a UNC path is in the makedirs() description, since they're actually mentioned there --- Doc/lib/libos.tex | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index fcc172f81b38..3d0b4051bd3f 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -672,12 +672,15 @@ Availability: Macintosh, \UNIX, Windows. \begin{funcdesc}{makedirs}{path\optional{, mode}} \index{directory!creating} -Recursive directory creation function. Like \function{mkdir()}, +Recursive directory creation function.\index{directory!creating} +\index{UNC paths!and \function{os.makedirs()}} +Like \function{mkdir()}, but makes all intermediate-level directories needed to contain the leaf directory. Throws an \exception{error} exception if the leaf directory already exists or cannot be created. The default \var{mode} is \code{0777} (octal). This function does not properly handle UNC -paths (only relevant on Windows systems). +paths (only relevant on Windows systems; Universal Naming Convention +paths are those that use the `\code{\e\e host\e path}' syntax). \versionadded{1.5.2} \end{funcdesc} -- 2.47.3