Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Option for recursive rmdir #7055

Merged
merged 6 commits into from
Jun 20, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions base/exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1228,6 +1228,7 @@ export
isfifo,
isfile,
islink,
isfileorlink,
ispath,
isreadable,
issetgid,
Expand Down
8 changes: 7 additions & 1 deletion base/file.jl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,13 @@ end
mkdir(path::String, mode::Signed) = error("mode must be an unsigned integer; try 0o$mode")
mkpath(path::String, mode::Signed) = error("mode must be an unsigned integer; try 0o$mode")

function rmdir(path::String)
function rmdir(path::String, recursive::Bool=false)
if recursive
for p=readdir(path)
p = joinpath(path, p)
isfileorlink(p) ? rm(p) : rmdir(p, true)
end
end
@unix_only ret = ccall(:rmdir, Int32, (Ptr{Uint8},), bytestring(path))
@windows_only ret = ccall(:_rmdir, Int32, (Ptr{Uint8},), bytestring(path))
systemerror(:rmdir, ret != 0)
Expand Down
2 changes: 1 addition & 1 deletion base/pkg/cache.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function prefetch{S<:String}(pkg::String, url::String, sha1s::Vector{S})
info("Cloning cache of $pkg from $url")
try Git.run(`clone -q --mirror $url $cache`)
catch
run(`rm -rf $cache`)
rmdir(cache, true)
rethrow()
end
end
Expand Down
2 changes: 1 addition & 1 deletion base/pkg/dir.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function init(meta::String=DEFAULT_META, branch::String=META_BRANCH)
run(`touch REQUIRE`)
end
catch e
run(`rm -rf $dir`)
rmdir(dir, true)
rethrow(e)
end
end
Expand Down
2 changes: 1 addition & 1 deletion base/pkg/entry.jl
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function clone(url::String, pkg::String)
Git.run(`clone -q $url $pkg`)
Git.set_remote_url(url, dir=pkg)
catch
run(`rm -rf $pkg`)
rmdir(pkg, true)
rethrow()
end
isempty(Reqs.parse("$pkg/REQUIRE")) && return
Expand Down
2 changes: 1 addition & 1 deletion base/pkg/generate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function package(
end
end
catch
isnew && run(`rm -rf $pkg`)
isnew && rmdir(pkg, true)
rethrow()
end
end
Expand Down
2 changes: 1 addition & 1 deletion base/pkg/write.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ end

function remove(pkg::String)
isdir(".trash") || mkdir(".trash")
ispath(".trash/$pkg") && run(`rm -rf .trash/$pkg`)
ispath(".trash/$pkg") && rmdir(".trash/$pkg", true)
run(`mv $pkg .trash/`)
end

Expand Down
24 changes: 14 additions & 10 deletions base/stat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -58,23 +58,24 @@ lstat(path...) = lstat(joinpath(path...))

# mode type predicates

ispath(st::StatStruct) = st.mode & 0xf000 != 0x0000
isfifo(st::StatStruct) = st.mode & 0xf000 == 0x1000
ischardev(st::StatStruct) = st.mode & 0xf000 == 0x2000
isdir(st::StatStruct) = st.mode & 0xf000 == 0x4000
isblockdev(st::StatStruct) = st.mode & 0xf000 == 0x6000
isfile(st::StatStruct) = st.mode & 0xf000 == 0x8000
islink(st::StatStruct) = st.mode & 0xf000 == 0xa000
issocket(st::StatStruct) = st.mode & 0xf000 == 0xc000
ispath(st::StatStruct) = st.mode & 0xf000 != 0x0000
isfifo(st::StatStruct) = st.mode & 0xf000 == 0x1000
ischardev(st::StatStruct) = st.mode & 0xf000 == 0x2000
isdir(st::StatStruct) = st.mode & 0xf000 == 0x4000
isblockdev(st::StatStruct) = st.mode & 0xf000 == 0x6000
isfile(st::StatStruct) = st.mode & 0xf000 == 0x8000
islink(st::StatStruct) = st.mode & 0xf000 == 0xa000
issocket(st::StatStruct) = st.mode & 0xf000 == 0xc000
isfileorlink(st::StatStruct) = st.mode & 0xd000 == 0x8000

# mode permission predicates

issetuid(st::StatStruct) = (st.mode & 0o4000) > 0
issetgid(st::StatStruct) = (st.mode & 0o2000) > 0
issticky(st::StatStruct) = (st.mode & 0o1000) > 0

isreadable(st::StatStruct) = (st.mode & 0o444) > 0
iswritable(st::StatStruct) = (st.mode & 0o222) > 0
isreadable(st::StatStruct) = (st.mode & 0o444) > 0
iswritable(st::StatStruct) = (st.mode & 0o222) > 0
isexecutable(st::StatStruct) = (st.mode & 0o111) > 0

uperm(st::StatStruct) = uint8(st.mode >> 6) & 0x7
Expand All @@ -91,6 +92,7 @@ for f in {
:isblockdev
:isfile
:islink
:isfileorlink
:issocket
:issetuid
:issetgid
Expand All @@ -106,6 +108,8 @@ for f in {
end

islink(path...) = islink(lstat(path...))
isfileorlink(path...) = isfileorlink(lstat(path...))


# some convenience functions

Expand Down
4 changes: 2 additions & 2 deletions doc/stdlib/base.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5067,9 +5067,9 @@ System
Create all directories in the given ``path``, with permissions ``mode``.
``mode`` defaults to 0o777, modified by the current file creation mask.

.. function:: rmdir(path)
.. function:: rmdir(path, [recursive=false])

Remove the directory named ``path``.
Remove the directory named ``path``. To remove a non-empty directory you must pass recursive true.

.. function:: getpid() -> Int32

Expand Down
4 changes: 4 additions & 0 deletions doc/stdlib/file.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ Filesystem

Returns ``true`` if ``path`` is a symbolic link, ``false`` otherwise.

.. function:: isfileorlink(path) -> Bool

Returns ``true`` if ``path`` is a regular file or a symbolic link, ``false`` otherwise.

.. function:: ispath(path) -> Bool

Returns ``true`` if ``path`` is a valid filesystem path, ``false`` otherwise.
Expand Down
18 changes: 18 additions & 0 deletions test/file.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ close(open(file,"w")) # like touch, but lets the operating system update the tim
@test isdir(dir)
@test !isfile(dir)
@test !islink(dir)
@test !isfileorlink(dir)
@test !isdir(file)
@test isfile(file)
@test !islink(file)
@test isfileorlink(file)
@test isreadable(file)
@test iswritable(file)
# Here's something else that might be UNIX-specific?
Expand All @@ -37,6 +39,7 @@ newfile = joinpath(dir, "bfile.txt")
mv(file, newfile)
@test !ispath(file)
@test isfile(newfile)
@test isfileorlink(newfile)
file = newfile

# Test renaming directories
Expand All @@ -57,6 +60,21 @@ b_stat = stat(b_tmpdir)

rmdir(b_tmpdir)

# rmdir recursive TODO add links
c_tmpdir = mktempdir()
c_subdir = joinpath(c_tmpdir, "c_subdir")
mkdir(c_subdir)
c_file = joinpath(c_tmpdir, "cfile.txt")
cp(newfile, c_file)

@test isdir(c_subdir)
@test isfile(c_file)
@test_throws rmdir(c_tmpdir)

rmdir(c_tmpdir, true)
@test !isdir(c_tmpdir)


#######################################################################
# This section tests file watchers. #
#######################################################################
Expand Down
2 changes: 1 addition & 1 deletion test/git.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ try cd(dir) do
end
git_verify(states[1:3]...)

end finally run(`rm -rf $dir`) end
end finally rmdir(dir, true) end
2 changes: 1 addition & 1 deletion test/gitutils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function git_setup(h::Dict, i::Dict, w::Dict, parents::String...)
# clear the repo
for line in eachline(`ls -A`)
name = chomp(line)
name == ".git" || run(`rm -rf $name`)
name == ".git" || rmdir(name, true)
end

# create the head commit
Expand Down
2 changes: 1 addition & 1 deletion test/pkg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function temp_pkg_dir(fn::Function)

fn()
finally
run(`rm -rf $tmpdir`)
rmdir(tmpdir, true)
end
end

Expand Down