issticky
issticky(path) -> Bool
Returns true
if path
has the sticky bit set, false
otherwise.
Examples
-
Check if a file has the sticky bit set:
julia> issticky("/path/to/file.txt") false
This example checks if the file at
/path/to/file.txt
has the sticky bit set. It returnsfalse
indicating that the sticky bit is not set. -
Check if a directory has the sticky bit set:
julia> issticky("/path/to/directory") true
This example checks if the directory at
/path/to/directory
has the sticky bit set. It returnstrue
indicating that the sticky bit is set. - Handle non-existent paths:
julia> issticky("/non/existent/path") false
It returns
false
for non-existent paths since a non-existent path cannot have the sticky bit set.
Common mistake example:
julia> issticky("/path/to/file.txt", "/another/file.txt")
ERROR: MethodError: no method matching issticky(::String, ::String)
In this example, the function is called with more than one argument. The issticky
function expects only one argument, which is the path to check. Make sure to provide only the path as a single argument when using the issticky
function.
See Also
abspath, basename, chmod, countlines, cp, ctime, dirname, download, evalfile, expanduser, fdio, filemode, filesize, functionloc, gperm, homedir, include_string, isabspath, isblockdev, ischardev, isdir, isdirpath, isexecutable, isfifo, isfile, islink, ismount, ispath, isreadable, issetgid, issetuid, issticky, iswritable, joinpath, less, lstat, mkdir, mkpath, mktemp, mktempdir, mtime, mv, normpath, operm, poll_fd, poll_file, readall, readcsv, readdir, readdlm, readlines, readlink, realpath, relpath, rm, splitdir, splitdrive, splitext, stat, symlink, tempdir, tempname, touch, truncate, uperm, watch_file, writecsv,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.