Empty directory: Difference between revisions

m
→‎{{header|Wren}}: Changed to Wren S/H
m (→‎{{header|Wren}}: Changed to Wren S/H)
 
(15 intermediate revisions by 10 users not shown)
Line 6:
 
=={{header|11l}}==
<langsyntaxhighlight lang="11l">I fs:list_dir(input()).empty
print(‘empty’)
E
print(‘not empty’)</langsyntaxhighlight>
 
=={{header|8086 Assembly}}==
{{trans|MS-DOS}}
 
<langsyntaxhighlight lang="asm">; this routine attempts to remove the directory and returns an error code if it cannot.
 
mov ax,seg dirname ;load into AX the segment where dirname is stored.
mov ds,ax ;load the segment register DS with the segment of dirname
mov dx,offset dirname ;load into AXDX the offset of dirname
mov ah,39h ;0x39 is the interrupt code for remove directory
int 21h ;sets carry if error is encountered. error code will be in AX.
Line 36:
 
 
dirname db "GAMES",0</langsyntaxhighlight>
 
=={{header|Ada}}==
<langsyntaxhighlight Adalang="ada">with Ada.Text_IO; use Ada.Text_IO;
with Ada.Directories;
procedure EmptyDir is
Line 62:
Put_Line (Empty ("./emptydir.adb"));
Put_Line (Empty ("./foobar"));
end EmptyDir;</langsyntaxhighlight>
{{out}}
<pre>Not empty
Line 73:
This uses the "argc", "argv", "file is directory" and "get directory" procedures specific to Algol 68 G.
<br>Note the Algol 68 G interpreter processes the command line parameters before "-" so this example expects the directory names to follow "-".
<langsyntaxhighlight lang="algol68"># returns TRUE if the specified directory is empty, FALSE if it doesn't exist or is non-empty #
PROC is empty directory = ( STRING directory )BOOL:
IF NOT file is directory( directory )
Line 104:
print( ( argv( i ), " is ", IF is empty directory( argv( i ) ) THEN "empty" ELSE "not empty" FI, newline ) )
FI
OD</langsyntaxhighlight>
{{out}}
<pre>
Line 115:
=={{header|Arturo}}==
 
<langsyntaxhighlight lang="rebol">emptyDir?: function [folder]-> empty? list folder
 
print emptyDir? "."</langsyntaxhighlight>
 
{{out}}
Line 124:
 
=={{header|AutoHotkey}}==
<langsyntaxhighlight lang="autohotkey">MsgBox % isDir_empty(A_ScriptDir)?"true":"false"
 
isDir_empty(p) {
Line 130:
return 0
return 1
}</langsyntaxhighlight>
{{out}}
<pre>false</pre>
 
=={{header|AWK}}==
<syntaxhighlight lang="awk">
<lang AWK>
# syntax: GAWK -f EMPTY_DIRECTORY.AWK
BEGIN {
Line 173:
return(msg)
}
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 182:
</pre>
 
=={{header|BaConBASIC}}==
==={{header|BaCon}}===
<lang bacon>FUNCTION check$(dir$)
<syntaxhighlight lang="basic">FUNCTION check$(dir$)
 
IF FILEEXISTS(dir$) THEN
Line 200 ⟶ 201:
 
dir$ = "."
PRINT "Directory '", dir$, "'", check$(dir$)</langsyntaxhighlight>
 
{{out}}
Line 213 ⟶ 214:
*2 - input directory does not exist.
*3 - input not found.
<langsyntaxhighlight lang="dos">@echo off
if "%~1"=="" exit /b 3
set "samp_path=%~1"
Line 242 ⟶ 243:
:folder_not_found
echo Folder not found.
exit /b 2</langsyntaxhighlight>
{{Out|Sample Session}}
(Saved the Batch File as IsEmpty.Bat in C:\)
Line 274 ⟶ 275:
=={{header|BBC BASIC}}==
{{works with|BBC BASIC for Windows}}
<langsyntaxhighlight lang="bbcbasic"> IF FNisdirectoryempty("C:\") PRINT "C:\ is empty" ELSE PRINT "C:\ is not empty"
IF FNisdirectoryempty("C:\temp") PRINT "C:\temp is empty" ELSE PRINT "C:\temp is not empty"
END
Line 290 ⟶ 291:
UNTIL res% == 0
SYS "FindClose", sh%
= (res% == 0)</langsyntaxhighlight>
 
=={{header|C}}==
<langsyntaxhighlight lang="c">#include <stdio.h>
#include <dirent.h>
#include <string.h>
Line 332 ⟶ 333:
 
return 0;
}</langsyntaxhighlight>Running it:<pre>
% mkdir stuff; ./a.out /usr/ ./stuff /etc/passwd
/usr/: not empty
Line 339 ⟶ 340:
</pre>
 
=={{header|C sharp|C#}}==
<langsyntaxhighlight lang="csharp">using System;
using System.IO;
 
Line 359 ⟶ 360:
}
}
</syntaxhighlight>
</lang>
Running it:<pre>
Assume c:\temp exists and is not empty, c:\temp\empty exists and is empty
Line 370 ⟶ 371:
=={{header|C++}}==
{{libheader|Boost}}
<langsyntaxhighlight lang="cpp">
#include <iostream>
#include <boost/filesystem.hpp>
Line 387 ⟶ 388:
}
}
</syntaxhighlight>
</lang>
 
=={{header|Clojure}}==
<langsyntaxhighlight lang="clojure">(require '[clojure.java.io :as io])
(defn empty-dir? [path]
(let [file (io/file path)]
(assert (.exists file))
(assert (.isDirectory file))
(-> file .list empty?))) ; .list ignores "." and ".."</langsyntaxhighlight>
 
=={{header|CoffeeScript}}==
<langsyntaxhighlight lang="coffeescript">
fs = require 'fs'
 
Line 406 ⟶ 407:
fns = fs.readdirSync dir
fns.length == 0
</syntaxhighlight>
</lang>
 
=={{header|Common Lisp}}==
Will also return <code>T</code> if <code>path</code> doesn't exist.
<langsyntaxhighlight lang="lisp">
(defun empty-directory-p (path)
(and (null (directory (concatenate 'string path "/*")))
(null (directory (concatenate 'string path "/*/")))))
</syntaxhighlight>
</lang>
 
=={{header|D}}==
 
<langsyntaxhighlight lang="d">import std.stdio, std.file;
 
void main() {
Line 429 ⟶ 430:
throw new Exception("dir not found: " ~ dirname);
return dirEntries(dirname, SpanMode.shallow).empty;
}</langsyntaxhighlight>
<pre>somedir is empty: false</pre>
=={{header|Delphi}}==
Line 435 ⟶ 436:
{{libheader| System.IOUtils}}
{{Trans|C#}}
<syntaxhighlight lang="delphi">
<lang Delphi>
program Empty_directory;
 
Line 463 ⟶ 464:
Writeln(ParamStr(i), CHECK[IsDirectoryEmpty(ParamStr(i))], ' empty');
Readln;
end.</langsyntaxhighlight>
{{out}}
The same of c#.
=={{header|Elixir}}==
<langsyntaxhighlight lang="elixir">path = hd(System.argv)
IO.puts File.dir?(path) and Enum.empty?( File.ls!(path) )</langsyntaxhighlight>
 
=={{header|Erlang}}==
Line 485 ⟶ 486:
 
=={{header|F_Sharp|F#}}==
<langsyntaxhighlight lang="fsharp">open System.IO
let isEmptyDirectory x = (Directory.GetFiles x).Length = 0 && (Directory.GetDirectories x).Length = 0</langsyntaxhighlight>
 
=={{header|Factor}}==
<langsyntaxhighlight lang="factor">USE: io.directories
: empty-directory? ( path -- ? ) directory-entries empty? ;</langsyntaxhighlight>
 
=={{header|FreeBASIC}}==
<langsyntaxhighlight lang="freebasic">' FB 1.05.0 Win64
 
#Include "dir.bi"
Line 535 ⟶ 536:
Print
Print "Press any key to quit"
Sleep</langsyntaxhighlight>
 
{{out}}
<pre>
'c:\freebasic\docs' is empty
</pre>
 
=={{header|FutureBasic}}==
<syntaxhighlight lang="futurebasic">
 
include "NSLog.incl"
 
local fn DirectoryContents( url as CFURLRef ) as CFArrayRef
CFArrayRef contents = fn FileManagerContentsOfDirectoryAtURL( url, NULL, NSDirectoryEnumerationSkipsHiddenFiles )
if ( contents == NULL )
NSLog(@"Unable to get contents of directory \"%@\".",fn URLLastPathComponent(url))
end if
end fn = fn ArrayValueForKey( contents, @"lastPathComponent" )
 
void local fn DoIt
CFURLRef dirURL, fileURL
CFArrayRef contents
dirURL = fn URLFileURLWithPath( fn StringByExpandingTildeInPath( @"~/Desktop/docs" ) )
if ( fn FileManagerCreateDirectoryAtURL( dirURL, YES, NULL ) )
contents = fn DirectoryContents( dirURL )
if ( contents )
NSLog(@"Directory \"docs\" \b")
if ( len(contents) )
NSLog(@"contents:\n%@",contents)
else
NSLog(@"is empty.")
end if
NSLog(@"")
fileURL = fn URLFileURLWithPath( fn StringByExpandingTildeInPath( @"~/Desktop/docs/output.txt" ) )
if (fn FileManagerCreateFileAtURL( fileURL, NULL, NULL ) )
contents = fn DirectoryContents( dirURL )
NSLog(@"Directory \"docs\" \b")
if ( len(contents) )
NSLog(@"contents:\n%@",contents)
else
NSLog(@"is empty.")
end if
end if
end if
end if
end fn
 
fn DoIt
 
HandleEvents
</syntaxhighlight>
 
{{out}}
<pre>
Directory "docs" is empty.
 
Directory "docs" contents:
(
"output.txt"
)
</pre>
 
=={{header|Gambas}}==
<langsyntaxhighlight lang="gambas">Public Sub Main()
Dim sFolder As String = User.home &/ "Rosetta"
Dim sDir As String[] = Dir(sFolder)
Line 554 ⟶ 614:
Print sOutput
 
End</langsyntaxhighlight>
Output:
<pre>
Line 561 ⟶ 621:
 
=={{header|Go}}==
<langsyntaxhighlight lang="go">package main
 
import (
Line 588 ⟶ 648:
return len(entries) == 0, nil
}
</syntaxhighlight>
</lang>
 
=={{header|Groovy}}==
Solution:
<langsyntaxhighlight lang="groovy">def isDirEmpty = { dirName ->
def dir = new File(dirName)
dir.exists() && dir.directory && (dir.list() as List).empty
}</langsyntaxhighlight>
 
Test:
<langsyntaxhighlight lang="groovy">def currentDir = new File('.')
def random = new Random()
def subDirName = "dir${random.nextInt(100000)}"
Line 606 ⟶ 666:
 
assert ! isDirEmpty('.')
assert isDirEmpty(subDirName)</langsyntaxhighlight>
 
=={{header|Haskell}}==
<langsyntaxhighlight lang="haskell">import System.Directory (getDirectoryContents)
import System.Environment (getArgs)
 
Line 617 ⟶ 677:
f False = "Directory is not empty"
 
main = getArgs >>= isEmpty . (!! 0) >>= putStrLn</langsyntaxhighlight>
Test:
<syntaxhighlight lang="text">$ mkdir 1
$ ./isempty 1
Directory is empty
$ ./isempty /usr/
Directory is not empty</langsyntaxhighlight>
 
 
==Icon and {{header|Unicon}}==
This example uses Unicon extensions. The 'empty' sub-directory was manually setup for this test.
<langsyntaxhighlight Iconlang="icon">procedure main()
every dir := "." | "./empty" do
write(dir, if isdirempty(dir) then " is empty" else " is not empty")
Line 642 ⟶ 702:
}
else stop(s," is not a directory or will not open")
end</langsyntaxhighlight>
 
{{out}}
Line 650 ⟶ 710:
=={{header|J}}==
 
<langsyntaxhighlight lang="j">require 'dir'
empty_dir=: 0 = '/*' #@dir@,~ ]</langsyntaxhighlight>
 
In other words, list the contents of the directory, count how many items are in it, and test if that count was zero.
Line 659 ⟶ 719:
Example, under windows, create some directories using cygwin:
 
<langsyntaxhighlight lang="bash">$ mkdir /tmp/a
$ touch /tmp/a/...
$ mkdir /tmp/b
$ mkdir /tmp/c
$ mkdir /tmp/c/d</langsyntaxhighlight>
 
Then, testing these directories, in J:
 
<langsyntaxhighlight lang="j"> empty_dir 'c:/cygwin/tmp/a'
0
empty_dir 'c:/cygwin/tmp/b'
1
empty_dir 'c:/cygwin/tmp/c'
0</langsyntaxhighlight>
 
=={{header|Java}}==
{{works with|Java|7+}}
This method does not check that the path given is actually a directory. If a path to a normal file is given, it will throw a <code>NullPointerException</code>. <code>File.listFiles()</code> does not count the "." and ".." entries.
<langsyntaxhighlight lang="java5">import java.nio.file.Paths;
//... other class code here
public static boolean isEmptyDir(String dirName){
return Paths.get(dirName).toFile().listFiles().length == 0;
}</langsyntaxhighlight>
 
=={{header|JavaScript}}==
The ECMAScript standard itself defines no IO interface – the following example makes use of the Node.js file IO library.
{{Works with|Node.js}}
<langsyntaxhighlight lang="javascript">// Node.js v14.15.4
const { readdirSync } = require("fs");
const emptydir = (path) => readdirSync(path).length == 0;
Line 694 ⟶ 754:
let dir = process.argv[i];
console.log(`${dir}: ${emptydir(dir) ? "" : "not "}empty`)
}</langsyntaxhighlight>
 
=={{header|Julia}}==
<langsyntaxhighlight lang="julia"># v0.6.0
isemptydir(dir::AbstractString) = isempty(readdir(dir))
 
@show isemptydir(".")
@show isemptydir("/home")
</syntaxhighlight>
</lang>
 
{{out}}
Line 711 ⟶ 771:
 
=={{header|Kotlin}}==
<langsyntaxhighlight lang="scala">// version 1.1.4
 
import java.io.File
Line 719 ⟶ 779:
val isEmpty = (File(dirPath).list().isEmpty())
println("$dirPath is ${if (isEmpty) "empty" else "not empty"}")
}</langsyntaxhighlight>
 
=={{header|Lasso}}==
<langsyntaxhighlight Lassolang="lasso">dir('has_content') -> isEmpty
'<br />'
dir('no_content') -> isEmpty</langsyntaxhighlight>
{{out}}
<pre>false
Line 730 ⟶ 790:
 
=={{header|Liberty BASIC}}==
<syntaxhighlight lang="lb">
<lang lb>
dim info$(10, 10)
files "c:\", info$()
Line 746 ⟶ 806:
print "Folder ";folder$;" is empty."
end if
</syntaxhighlight>
</lang>
 
=={{header|Lingo}}==
<langsyntaxhighlight lang="lingo">on isDirEmpty (dir)
return getNthFileNameInFolder(dir, 1) = EMPTY
end</langsyntaxhighlight>
 
=={{header|Lua}}==
Pure Lua function based on snipplet from Stack Overflow[http://stackoverflow.com/questions/5303174/how-to-get-list-of-directories-in-lua#11130774].
<langsyntaxhighlight lang="lua">
function scandir(directory)
local i, t, popen = 0, {}, io.popen
Line 772 ⟶ 832:
return #scandir(directory) == 0
end
</syntaxhighlight>
</lang>
 
Using lfs[https://keplerproject.github.io/luafilesystem/] library.
<langsyntaxhighlight lang="lua">
function isemptydir(directory,nospecial)
for filename in require('lfs').dir(directory) do
Line 784 ⟶ 844:
return true
end
</syntaxhighlight>
</lang>
 
=={{header|Maple}}==
 
<syntaxhighlight lang="maple">
<lang Maple>
emptydirectory := proc (dir)
is(listdir(dir) = [".", ".."]);
end proc;
</syntaxhighlight>
</lang>
 
=={{header|Mathematica}} / {{header|Wolfram Language}}==
<langsyntaxhighlight Mathematicalang="mathematica">EmptyDirectoryQ[x_] := (SetDirectory[x]; If[FileNames[] == {}, True, False])
 
Example use:
EmptyDirectoryQ["C:\\Program Files\\Wolfram Research\\Mathematica\\9"]
->True</langsyntaxhighlight>
 
=={{header|MATLAB}} / {{header|Octave}}==
<syntaxhighlight lang="matlab">
<lang Matlab>
function x = isEmptyDirectory(p)
if isdir(p)
Line 811 ⟶ 871:
end;
end;
</syntaxhighlight>
</lang>
 
=={{header|min}}==
{{works with|min|0.19.3}}
<langsyntaxhighlight lang="min">(ls bool not) :empty-dir?</langsyntaxhighlight>
 
=={{header|MS-DOS}}==
 
Since you cannot remove a directory that isn't empty, one way to check is to attempt to remove it.
<langsyntaxhighlight lang="dos">C:\>rd GAMES
Unable to remove: GAMES.
 
C:\></langsyntaxhighlight>
=={{header|Nanoquery}}==
<langsyntaxhighlight lang="nanoquery">def isempty(dirname)
return len(new(Nanoquery.IO.File).listDir(dirname)) = 0
end</langsyntaxhighlight>
 
=={{header|Nemerle}}==
<langsyntaxhighlight Nemerlelang="nemerle">using System.IO;
using System.Console;
 
Line 848 ⟶ 908:
}
}
}</langsyntaxhighlight>
 
=={{header|NewLISP}}==
<syntaxhighlight lang="newlisp">
<lang NewLISP>
(define (empty-dir? path-to-check)
(empty? (clean (lambda (x) (or (= "." x) (= ".." x))) (directory path-to-check)))
)
</syntaxhighlight>
</lang>
 
=={{header|Nim}}==
<langsyntaxhighlight lang="nim">import os, rdstdin
 
var empty = true
Line 864 ⟶ 924:
empty = false
break
echo empty</langsyntaxhighlight>
 
Alternatively:
 
<langsyntaxhighlight lang="nim">import os, sequtils
 
proc isEmptyDir(dir: string): bool =
Line 874 ⟶ 934:
 
echo isEmptyDir("/tmp") # false - there is always something in "/tmp"
echo isEmptyDir("/temp") # true - "/temp" does not exist</langsyntaxhighlight>
 
=={{header|Objeck}}==
<langsyntaxhighlight lang="objeck">function : IsEmptyDirectory(dir : String) ~ Bool {
return Directory->List(dir)->Size() = 0;
}</langsyntaxhighlight>
 
=={{header|OCaml}}==
 
<langsyntaxhighlight lang="ocaml">let is_dir_empty d =
Sys.readdir d = [| |]</langsyntaxhighlight>
 
=={{header|ooRexx}}==
<langsyntaxhighlight lang="oorexx">Call test 'D:\nodir' /* no such directory */
Call test 'D:\edir' /* an empty directory */
Call test 'D:\somedir' /* directory with 2 files */
Line 906 ⟶ 966:
End
End
Return</langsyntaxhighlight>
{{out}}
<pre>Directory D:\nodir not found
Line 916 ⟶ 976:
 
Define a function ''chkdir(<path>)'' that returns count of entries in a directory (without . and .. ):
<langsyntaxhighlight lang="parigp">chkdir(d)=extern(concat(["[ -d '",d,"' ]&&ls -A '",d,"'|wc -l||echo -1"]))</langsyntaxhighlight>
 
On error ''chkdir(...)'' returns -1 else count of entries. If ''chkdir() == 0'' then directory is empty. So define an additional function:
<langsyntaxhighlight lang="parigp">dir_is_empty(d)=!chkdir(d)</langsyntaxhighlight>
 
Output:<pre>chkdir("/tmp"): 52
 
dir_is_empty("/tmp"): 0</pre>
 
=={{header|Pascal}}==
{{works with|GNU Pascal}}
Pascal does not know the notion of directories.
Therefore it is ''not possible'' to determine whether a directory is empty.
 
However, ''GNU Pascal'' provides certain extensions to [[Extended Pascal]] (ISO 10206) so it is possible nonetheless.
Note, the following solution works only on ''strictly hierarchical'' file systems.
<syntaxhighlight lang="pascal">program emptyDirectory(input, output);
 
type
path = string(1024);
 
{
\brief determines whether a (hierarchial FS) directory is empty
\param accessVia a possible route to access a directory
\return whether \param accessVia is an empty directory
}
function isEmptyDirectory(protected accessVia: path): Boolean;
var
{ NB: `file` data types without a domain type are non-standard }
directory: bindable file;
FD: bindingType;
begin
{ initialize variables }
unbind(directory);
FD := binding(directory);
FD.name := accessVia;
{ binding to directories is usually not possible }
FD.force := true;
{ the actual test }
bind(directory, FD);
FD := binding(directory);
unbind(directory);
isEmptyDirectory := FD.bound and FD.directory and (FD.links <= 2)
end;
 
{ === MAIN ============================================================= }
var
s: path;
begin
readLn(s);
writeLn(isEmptyDirectory(s))
end.</syntaxhighlight>
Note, symbolic links’ targets are resolved, so <tt>accessVia</tt> could in fact be a symbolic link ''to'' an empty directory.
 
=={{header|Perl}}==
===Simple version===
<langsyntaxhighlight lang="perl">sub dir_is_empty {!<$_[0]/*>}</langsyntaxhighlight>
This version however doesn't catch 'hidden' files that start with a dot.
 
Line 934 ⟶ 1,043:
Unfortunalety, BSD glob() doesn't handle inverted character class. If it did, this pattern could be used: <tt>{.[^.],}*</tt> (this works well in bash). But it doesn't, so there's a
===Thorough version===
<langsyntaxhighlight lang="perl">use IO::Dir;
sub dir_is_empty { !grep !/^\.{1,2}\z/, IO::Dir->new(@_)->read }</langsyntaxhighlight>
 
=={{header|Phix}}==
<!--<syntaxhighlight lang="phix">(notonline)-->
<lang Phix>procedure test(string filename)
<span style="color: #008080;">without</span> <span style="color: #008080;">js</span> <span style="color: #000080;font-style:italic;">-- file i/o</span>
string msg
<span style="color: #008080;">procedure</span> <span style="color: #000000;">test</span><span style="color: #0000FF;">(</span><span style="color: #004080;">string</span> <span style="color: #000000;">filename</span><span style="color: #0000FF;">)</span>
switch get_file_type(filename) do
<span style="color: #004080;">string</span> <span style="color: #000000;">msg</span>
case FILETYPE_UNDEFINED: msg = "is UNDEFINED"
<span style="color: #008080;">switch</span> <span style="color: #7060A8;">get_file_type</span><span style="color: #0000FF;">(</span><span style="color: #000000;">filename</span><span style="color: #0000FF;">)</span> <span style="color: #008080;">do</span>
case FILETYPE_NOT_FOUND: msg = "is NOT_FOUND"
<span style="color: #008080;">case</span> <span style="color: #000000;">FILETYPE_UNDEFINED</span><span style="color: #0000FF;">:</span> <span style="color: #000000;">msg</span> <span style="color: #0000FF;">=</span> <span style="color: #008000;">"is UNDEFINED"</span>
case FILETYPE_FILE: msg = "is a FILE"
<span style="color: #008080;">case</span> <span style="color: #000000;">FILETYPE_NOT_FOUND</span><span style="color: #0000FF;">:</span> <span style="color: #000000;">msg</span> <span style="color: #0000FF;">=</span> <span style="color: #008000;">"is NOT_FOUND"</span>
case FILETYPE_DIRECTORY:
<span style="color: #008080;">case</span> <span style="color: #004600;">FILETYPE_FILE</span><span style="color: #0000FF;">:</span> <span style="color: #000000;">msg</span> <span style="color: #0000FF;">=</span> <span style="color: #008000;">"is a FILE"</span>
sequence d = dir(filename)
<span style="color: #008080;">case</span> <span style="color: #004600;">FILETYPE_DIRECTORY</span><span style="color: #0000FF;">:</span>
integer count = 0
<span style="color: #004080;">integer</span> <span style="color: #000000;">count</span> <span style="color: #0000FF;">=</span> <span style="color: #7060A8;">length</span><span style="color: #0000FF;">(</span><span style="color: #7060A8;">filter</span><span style="color: #0000FF;">(</span><span style="color: #7060A8;">vslice</span><span style="color: #0000FF;">(</span><span style="color: #7060A8;">dir</span><span style="color: #0000FF;">(</span><span style="color: #000000;">filename</span><span style="color: #0000FF;">),</span><span style="color: #004600;">D_NAME</span><span style="color: #0000FF;">),</span><span style="color: #008000;">"out"</span><span style="color: #0000FF;">,{</span><span style="color: #008000;">"."</span><span style="color: #0000FF;">,</span><span style="color: #008000;">".."</span><span style="color: #0000FF;">}))</span>
for i=1 to length(d) do
<span style="color: #000000;">msg</span> <span style="color: #0000FF;">=</span> <span style="color: #008080;">iff</span><span style="color: #0000FF;">(</span><span style="color: #000000;">count</span><span style="color: #0000FF;">=</span><span style="color: #000000;">0</span><span style="color: #0000FF;">?</span><span style="color: #008000;">"is an empty directory"</span>
if not find(d[i][D_NAME],{".",".."}) then
<span style="color: #0000FF;">:</span><span style="color: #7060A8;">sprintf</span><span style="color: #0000FF;">(</span><span style="color: #008000;">"is a directory containing %d files"</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">count</span><span style="color: #0000FF;">}))</span>
count += 1
<span style="color: #008080;">end</span> <span style="color: #008080;">switch</span>
end if
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"%s %s\n"</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">filename</span><span style="color: #0000FF;">,</span><span style="color: #000000;">msg</span><span style="color: #0000FF;">})</span>
end for
<span style="color: #008080;">end</span> <span style="color: #008080;">procedure</span>
if count=0 then
msg = "is an empty directory"
<span style="color: #008080;">constant</span> <span style="color: #000000;">tests</span> <span style="color: #0000FF;">=</span> <span style="color: #0000FF;">{</span><span style="color: #008000;">"C:\\xx"</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"C:\\not_there"</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"C:\\Program Files (x86)\\Phix\\p.exe"</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"C:\\Windows"</span><span style="color: #0000FF;">}</span>
else
<span style="color: #008080;">for</span> <span style="color: #000000;">i</span><span style="color: #0000FF;">=</span><span style="color: #000000;">1</span> <span style="color: #008080;">to</span> <span style="color: #7060A8;">length</span><span style="color: #0000FF;">(</span><span style="color: #000000;">tests</span><span style="color: #0000FF;">)</span> <span style="color: #008080;">do</span>
msg = sprintf("is a directory containing %d files",{count})
<span style="color: #000000;">test</span><span style="color: #0000FF;">(</span><span style="color: #000000;">tests</span><span style="color: #0000FF;">[</span><span style="color: #000000;">i</span><span style="color: #0000FF;">])</span>
end if
<span style="color: #008080;">end</span> <span style="color: #008080;">for</span>
end switch
<!--</syntaxhighlight>-->
printf(1,"%s %s\n",{filename,msg})
end procedure
 
constant tests = {"C:\\xx","C:\\not_there","C:\\Program Files (x86)\\Phix\\p.exe","C:\\Windows"}
for i=1 to length(tests) do
test(tests[i])
end for</lang>
{{out}}
<pre>
Line 975 ⟶ 1,078:
=={{header|PHP}}==
Any improvements welcome but here is a starting point for PHP
<langsyntaxhighlight lang="php">
 
$dir = 'path_here';
Line 994 ⟶ 1,097:
}
 
</syntaxhighlight>
</lang>
 
=={{header|PicoLisp}}==
<langsyntaxhighlight PicoLisplang="picolisp">(prinl "myDir is" (and (dir "myDir") " not") " empty")</langsyntaxhighlight>
{{out}}
<pre>myDir is not empty</pre>
Line 1,004 ⟶ 1,107:
 
{{works with|PowerShell|4.0}}
<syntaxhighlight lang="powershell">
<lang PowerShell>
$path = "C:\Users"
if((Dir $path).Count -eq 0) {
Line 1,011 ⟶ 1,114:
"$path is not empty"
}
</syntaxhighlight>
</lang>
<b>Output:</b>
<pre>
Line 1,019 ⟶ 1,122:
=={{header|Prolog}}==
 
<langsyntaxhighlight Prologlang="prolog">non_empty_file('.').
non_empty_file('..').
 
empty_dir(Dir) :-
directory_files(Dir, Files),
maplist(non_empty_file, Files).</langsyntaxhighlight>
 
=={{header|PureBasic}}==
<langsyntaxhighlight lang="purebasic">Procedure isDirEmpty(path$)
If Right(path$, 1) <> "\": path$ + "\": EndIf
Protected dirID = ExamineDirectory(#PB_Any, path$, "*.*")
Line 1,055 ⟶ 1,158:
EndIf
MessageRequester("Empty directory test", #DQUOTE$ + path$ + #DQUOTE$ + result$)
EndIf </langsyntaxhighlight>
{{out}} when selecting directories "L:\vv\6\" and "L:\vv\" :
<pre>"L:\vv\6\" is empty.
Line 1,063 ⟶ 1,166:
=={{header|Python}}==
{{works with|Python|2.x}}
<langsyntaxhighlight lang="python">import os;
if os.listdir(raw_input("directory")):
print "not empty"
else:
print "empty"
</syntaxhighlight>
</lang>
 
=={{header|R}}==
<syntaxhighlight lang="r">
is_dir_empty <- function(path){
if(length(list.files(path)) == 0)
print("This folder is empty")
}
is_dir_empty(path)
</syntaxhighlight>
 
=={{header|Racket}}==
 
<langsyntaxhighlight lang="racket">
#lang racket
(empty? (directory-list "some-directory"))
</syntaxhighlight>
</lang>
 
=={{header|Raku}}==
(formerly Perl 6)
<syntaxhighlight lang="raku" perl6line>sub dir-is-empty ($d) { not dir $d }</langsyntaxhighlight>
The <tt>dir</tt> function returns a lazy list of filenames, excluding "<tt>.</tt>" and "<tt>..</tt>" automatically. Any boolean context (in this case the <tt>not</tt> function) will do just enough work on the lazy list to determine whether there are any elements, so we don't have to count the directory entries, or even read them all into memory, if there are more than one buffer's worth.
 
Line 1,085 ⟶ 1,198:
{{works with|Regina}}
The following program was tested in a DOS window under Windows/XP and should work for all Microsoft Windows.
<langsyntaxhighlight lang="rexx">/*REXX pgm checks to see if a directory is empty; if not, lists entries.*/
parse arg xdir; if xdir='' then xdir='\someDir' /*Any DIR? Use default.*/
@.=0 /*default in case ADDRESS fails. */
Line 1,098 ⟶ 1,211:
if #==0 then #=' no ' /*use a word, ¬zero.*/
say center('directory ' xdir " has " # ' entries.',79,'─')
exit @.0+rc /*stick a fork in it, we're done.*/</langsyntaxhighlight>
{{out}} when the following input was used: &nbsp; <tt> temp </tt>
<pre>
Line 1,109 ⟶ 1,222:
 
=={{header|Ring}}==
<langsyntaxhighlight lang="ring">
myList = dir("C:\Ring\bin")
if len(myList) > 0 see "C:\Ring\bin is not empty" + nl
else see "C:\Ring\bin is empty" + nl ok
</syntaxhighlight>
</lang>
 
=={{header|RPL}}==
≪ 1 OVER SIZE '''FOR''' j
DUP j GET EVAL
'''NEXT''' DROP
VARS SIZE NOT
≫ ''''MTDIR'''' STO
{{in}}
<pre>
{ HOME °RZTA °TEST } MTDIR
</pre>
{{out}}
<pre>
1: 0
</pre>
 
=={{header|Ruby}}==
Raises a SystemCallError if the named directory doesn’t exist.
<langsyntaxhighlight lang="ruby">Dir.entries("testdir").empty? </langsyntaxhighlight>
 
=={{header|Run BASIC}}==
<langsyntaxhighlight lang="runbasic">files #f, DefaultDir$ + "\*.*" ' open some directory.
print "hasanswer: ";#f HASANSWER() ' if it has an answer it is not MT
print "rowcount: ";#f ROWCOUNT() ' if not MT, how many files?</langsyntaxhighlight>
 
=={{header|Rust}}==
<langsyntaxhighlight lang="rust">use std::fs::read_dir;
use std::error::Error;
 
Line 1,145 ⟶ 1,273:
}
}
}</langsyntaxhighlight>
 
=={{header|Scala}}==
<langsyntaxhighlight lang="scala">import java.io.File
 
def isDirEmpty(file:File) : Boolean =
return file.exists && file.isDirectory && file.list.isEmpty</langsyntaxhighlight>
 
=={{header|Seed7}}==
<langsyntaxhighlight lang="seed7">$ include "seed7_05.s7i";
include "osfiles.s7i";
 
Line 1,163 ⟶ 1,291:
begin
writeln(dirEmpty("somedir"));
end func;</langsyntaxhighlight>
 
=={{header|SenseTalk}}==
The filesAndFolders function returns an empty list if a directory is empty (and does not return '.' or '..').
<langsyntaxhighlight lang="sensetalk">put the temporary folder & "NewFolder" into newFolderPath
make folder newFolderPath -- create a new empty directory
 
Line 1,175 ⟶ 1,303:
put "Something is present in " & newFolderPath
end if
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,183 ⟶ 1,311:
=={{header|Sidef}}==
Built-in method:
<langsyntaxhighlight lang="ruby">Dir.new('/my/dir').is_empty; # true, false or nil</langsyntaxhighlight>
 
User-defined function:
<langsyntaxhighlight lang="ruby">func is_empty(dir) {
dir.open(\var dir_h) || return nil;
dir_h.each { |file|
Line 1,193 ⟶ 1,321:
};
return true;
};</langsyntaxhighlight>
 
=={{header|Standard ML}}==
<langsyntaxhighlight lang="sml">fun isDirEmpty(path: string) =
let
val dir = OS.FileSys.openDir path
Line 1,207 ⟶ 1,335:
| _ => false
)
end;</langsyntaxhighlight>
 
=={{header|Tcl}}==
<langsyntaxhighlight lang="tcl">proc isEmptyDir {dir} {
# Get list of _all_ files in directory
set filenames [glob -nocomplain -tails -directory $dir * .*]
# Check whether list is empty (after filtering specials)
expr {![llength [lsearch -all -not -regexp $filenames {^\.\.?$}]]}
}</langsyntaxhighlight>
 
=={{header|UNIX Shell}}==
<langsyntaxhighlight lang="bash">
#!/bin/sh
DIR=/tmp/foo
[ `ls -a $DIR|wc -l` -gt 2 ] && echo $DIR is NOT empty || echo $DIR is empty
</syntaxhighlight>
</lang>
 
=={{header|VBA}}==
<langsyntaxhighlight lang="vb">Sub Main()
Debug.Print IsEmptyDirectory("C:\Temp")
Debug.Print IsEmptyDirectory("C:\Temp\")
Line 1,235 ⟶ 1,363:
D = IIf(Right(D, 1) <> Sep, D & Sep, D)
IsEmptyDirectory = (Dir(D & "*.*") = "")
End Function</langsyntaxhighlight>
 
=={{header|VBScript}}==
<syntaxhighlight lang="vb">
<lang vb>
Function IsDirEmpty(path)
IsDirEmpty = False
Line 1,251 ⟶ 1,379:
WScript.StdOut.WriteLine IsDirEmpty("C:\Temp")
WScript.StdOut.WriteLine IsDirEmpty("C:\Temp\test")
</syntaxhighlight>
</lang>
 
{{Out}}
Line 1,258 ⟶ 1,386:
True
</pre>
 
=={{header|V (Vlang)}}==
<syntaxhighlight lang="v (vlang)">import os
 
fn main() {
println(is_empty_dir('../Check'))
}
 
fn is_empty_dir(name string) string {
if os.is_dir(name) == false {return 'Directory name not exist!'}
if os.is_dir(name) && os.is_dir_empty(name) == true {return 'Directory exists and is empty!'}
return 'Directory not empty!'
}
</syntaxhighlight>
 
=={{header|Wren}}==
<langsyntaxhighlight ecmascriptlang="wren">import "io" for Directory
 
var isEmptyDir = Fn.new { |path|
Line 1,269 ⟶ 1,411:
var path = "test"
var empty = isEmptyDir.call(path)
System.print("'%(path)' is %(empty ? "empty" : "not empty")")</langsyntaxhighlight>
 
{{out}}
Line 1,278 ⟶ 1,420:
 
=={{header|zkl}}==
<langsyntaxhighlight lang="zkl">path:="Empty"; File.isDir(path).println();
File.mkdir(path); File.isDir(path).println();
File.glob(path+"/*").println(); // show contents of directory</langsyntaxhighlight>
{{out}}
<pre>
9,476

edits