os.removedirs Directory not empty python
os.removedirs(self.outputdir)时出现Error:Directory not emptyimport shutilshutil.rmtree(self.outputdir, ignore_errors=True)问题解决。python判断文件是否存在:import osos.path.isfile(file_path)或者os.path.exists(file_path)判断文件夹是否存在:os.path.exists(file_dir)创建文件夹: