8 lines
280 B
Text
8 lines
280 B
Text
put the temporary folder & "NewFolder" into newFolderPath
|
|
make folder newFolderPath -- create a new empty directory
|
|
|
|
if the filesAndFolders in newFolderPath is empty then
|
|
put "Directory " & newFolderPath & " is empty!"
|
|
else
|
|
put "Something is present in " & newFolderPath
|
|
end if
|