Remove all files in a directory

前端 未结 13 2266
小蘑菇
小蘑菇 2020-12-23 19:19

Trying to remove all of the files in a certain directory gives me the follwing error:

OSError: [Errno 2] No such file or directory: \'/home/me/test/*\

13条回答
  •  旧时难觅i
    2020-12-23 19:54

    Bit of a hack but if you would like to keep the directory, the following can be used.

    import os
    import shutil
    shutil.rmtree('/home/me/test') 
    os.mkdir('/home/me/test')
    

提交回复
热议问题