3 lines
96 B
Text
3 lines
96 B
Text
function : IsEmptyDirectory(dir : String) ~ Bool {
|
|
return Directory->List(dir)->Size() = 0;
|
|
}
|