1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
|
.. currentmodule:: Base
Filesystem
----------
.. function:: isblockdev(path) -> Bool
Returns ``true`` if ``path`` is a block device, ``false`` otherwise.
.. function:: ischardev(path) -> Bool
Returns ``true`` if ``path`` is a character device, ``false`` otherwise.
.. function:: isdir(path) -> Bool
Returns ``true`` if ``path`` is a directory, ``false`` otherwise.
.. function:: isexecutable(path) -> Bool
Returns ``true`` if the current user has permission to execute ``path``,
``false`` otherwise.
.. function:: isfifo(path) -> Bool
Returns ``true`` if ``path`` is a FIFO, ``false`` otherwise.
.. function:: isfile(path) -> Bool
Returns ``true`` if ``path`` is a regular file, ``false`` otherwise.
.. function:: islink(path) -> Bool
Returns ``true`` if ``path`` is a symbolic link, ``false`` otherwise.
.. function:: ispath(path) -> Bool
Returns ``true`` if ``path`` is a valid filesystem path, ``false`` otherwise.
.. function:: isreadable(path) -> Bool
Returns ``true`` if the current user has permission to read ``path``,
``false`` otherwise.
.. function:: issetgid(path) -> Bool
Returns ``true`` if ``path`` has the setgid flag set, ``false`` otherwise.
.. function:: issetuid(path) -> Bool
Returns ``true`` if ``path`` has the setuid flag set, ``false`` otherwise.
.. function:: issocket(path) -> Bool
Returns ``true`` if ``path`` is a socket, ``false`` otherwise.
.. function:: issticky(path) -> Bool
Returns ``true`` if ``path`` has the sticky bit set, ``false`` otherwise.
.. function:: iswritable(path) -> Bool
Returns ``true`` if the current user has permission to write to ``path``,
``false`` otherwise.
.. function:: homedir() -> String
Return the current user's home directory.
.. function:: dirname(path::String) -> String
Get the directory part of a path.
.. function:: basename(path::String) -> String
Get the file name part of a path.
.. function:: @__FILE__() -> String
``@__FILE__`` expands to a string with the absolute path and file name of the script being run.
Returns ``nothing`` if run from a REPL or an empty string if evaluated by ``julia -e <expr>``.
.. function:: isabspath(path::String) -> Bool
Determines whether a path is absolute (begins at the root directory).
.. function:: isdirpath(path::String) -> Bool
Determines whether a path refers to a directory (for example, ends with a path separator).
.. function:: joinpath(parts...) -> String
Join path components into a full path. If some argument is an absolute
path, then prior components are dropped.
.. function:: abspath(path::String) -> String
Convert a path to an absolute path by adding the current directory if
necessary.
.. function:: normpath(path::String) -> String
Normalize a path, removing "." and ".." entries.
.. function:: realpath(path::String) -> String
Canonicalize a path by expanding symbolic links and removing "." and ".." entries.
.. function:: expanduser(path::String) -> String
On Unix systems, replace a tilde character at the start of a path with the
current user's home directory.
.. function:: splitdir(path::String) -> (String,String)
Split a path into a tuple of the directory name and file name.
.. function:: splitdrive(path::String) -> (String,String)
On Windows, split a path into the drive letter part and the path part. On Unix
systems, the first component is always the empty string.
.. function:: splitext(path::String) -> (String,String)
If the last component of a path contains a dot, split the path into everything
before the dot and everything including and after the dot. Otherwise, return
a tuple of the argument unmodified and the empty string.
.. function:: tempname()
Generate a unique temporary filename.
.. function:: tempdir()
Obtain the path of a temporary directory.
.. function:: mktemp()
Returns ``(path, io)``, where ``path`` is the path of a new temporary file
and ``io`` is an open file object for this path.
.. function:: mktempdir()
Create a temporary directory and return its path.
|