Mercurial > hg > octave-lyh
diff src/dirfns.cc @ 5597:e0e48ea2a93c
[project @ 2006-01-13 21:17:37 by jwe]
author | jwe |
---|---|
date | Fri, 13 Jan 2006 21:17:39 +0000 |
parents | 941f0fc6b596 |
children | c90441793b1b |
line wrap: on
line diff
--- a/src/dirfns.cc +++ b/src/dirfns.cc @@ -101,6 +101,7 @@ Changes the current working directory to @file{~/octave}. If the\n\ directory does not exist, an error message is printed and the working\n\ directory is not changed.\n\ +@seealso{mkdir, rmdir, dir}\n\ @end deffn") { octave_value_list retval; @@ -158,6 +159,7 @@ The @code{dir} and @code{ls} commands are implemented by calling your\n\ system's directory listing command, so the available options may vary\n\ from system to system.\n\ +@seealso{dir, stat, readdir, glob, filesep}\n\ @end deffn") { octave_value retval; @@ -220,6 +222,7 @@ "-*- texinfo -*-\n\ @deftypefn {Built-in Function} {} pwd ()\n\ Return the current working directory.\n\ +@seealso{dir, ls}\n\ @end deftypefn") { octave_value retval; @@ -248,6 +251,7 @@ If successful, @var{err} is 0 and @var{msg} is an empty string.\n\ Otherwise, @var{err} is nonzero and @var{msg} contains a\n\ system-dependent error message.\n\ +@seealso{dir, glob}\n\ @end deftypefn") { octave_value_list retval; @@ -296,6 +300,7 @@ character strings. Otherwise, @var{status} is 0, @var{msg} contains a\n\ system-dependent error message, and @var{msgid} contains a unique\n\ message identifier.\n\ +@seealso{rmdir}\n\ @end deftypefn") { octave_value_list retval; @@ -345,6 +350,7 @@ \n\ If the optional second parameter is suplied, recursively remove all\n\ subdirectories as well.\n\ +@seealso{mkdir}\n\ @end deftypefn") { octave_value_list retval; @@ -394,6 +400,7 @@ If successful, @var{err} is 0 and @var{msg} is an empty string.\n\ Otherwise, @var{err} is nonzero and @var{msg} contains a\n\ system-dependent error message.\n\ +@seealso{symlink}\n\ @end deftypefn") { octave_value_list retval; @@ -440,6 +447,7 @@ If successful, @var{err} is 0 and @var{msg} is an empty string.\n\ Otherwise, @var{err} is nonzero and @var{msg} contains a\n\ system-dependent error message.\n\ +@seealso{link, readlink}\n\ @end deftypefn") { octave_value_list retval; @@ -487,6 +495,7 @@ @var{symlink}, @var{err} is 0 and @var{msg} is an empty string.\n\ Otherwise, @var{err} is nonzero and @var{msg} contains a\n\ system-dependent error message.\n\ +@seealso{link, symlink}\n\ @end deftypefn") { octave_value_list retval; @@ -530,6 +539,7 @@ If successful, @var{err} is 0 and @var{msg} is an empty string.\n\ Otherwise, @var{err} is nonzero and @var{msg} contains a\n\ system-dependent error message.\n\ +@seealso{ls, dir}\n\ @end deftypefn") { octave_value_list retval; @@ -583,8 +593,8 @@ @result{} \"/vmlinuz\"\n\ @end group\n\ @end example\n\ -@end deftypefn\n\ -@seealso{ls,dir}") +@seealso{dir, ls, stat, readdir}\n\ +@end deftypefn") { octave_value retval; @@ -661,6 +671,7 @@ @defvr {Built-in Variable} filesep\n\ The character used to separate directory names. The value\n\ of this variable is system dependent.\n\ +@seealso{dir, ls}\n\ @end defvr"); }