Python script to loop through all files in directory, delete any that are less than 200 kB in size

前端 未结 4 1852
醉话见心
醉话见心 2021-01-31 03:39

I want to delete all files in a folder that are less than 200 kB in size.

Just want to be sure here, when i do a ls -la on my macbook, the file size says 171 or 143, I a

4条回答
  •  余生分开走
    2021-01-31 03:55

    You could also use

    import os    
    
    files_in_dir = os.listdir(path_to_dir)
    for file_in_dir in files_in_dir:
        #do the check you need on each file
    

提交回复
热议问题