how to delete directory with python code example
Example 1: python create directory
import os
os.mkdir('tempDir')
os.mkdir('tempDir2/temp2/temp')
os.makedirs('tempDir2/temp2/temp')
Example 2: os remove entire folder python
import os
import shutil
os.remove('/your/path/to/file.txt')
os.rmdir('/your/folder/path/')
shutil.rmtree('/your/folder/path/')
Example 3: how to get a list of folders in a directory godot
func list_files_in_directory(path):
var files = []
var dir = Directory.new()
dir.open(path)
dir.list_dir_begin()
while true:
var file = dir.get_next()
if file == "":
break
elif not file.begins_with("."):
files.append(file)
dir.list_dir_end()
return files