Delete all files except files with the extension pdf in a directory

Starkers

I have a directory that contains the following:

x.pdf
y.zip
z.mp3
a.pdf

I want to delete all files apart from x.pdf and a.pdf. How do I do this from the terminal? There are no subdirectories so no need for any recursion.

Edward Torvalds
cd <the directory you want>
find . -type f ! -iname "*.pdf" -delete
  • The first command will take you to the directory in which you want to delete your files
  • The second command will delete all files except with those ending with .pdf in filename

For example, if there is a directory called temp in your home folder:

cd ~/temp

then delete files:

find . -type f ! -iname "*.pdf" -delete

This will delete all files except xyz.pdf.

You can combine these two commands to:

find ~/temp -type f ! -iname "*.pdf" -delete

. is the current directory. ! means to take all files except the ones with .pdf at the end. -type f selects only files, not directories. -delete means to delete it.

NOTE: this command will delete all files (except pdf files but including hidden files) in current directory as well as in all sub-directories. ! must come before -name. simply -name will include only .pdf, while -iname will include both .pdf and .PDF

To delete only in current directory and not in sub-directories add -maxdepth 1:

find . -maxdepth 1 -type f ! -iname "*.pdf" -delete

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Delete all files except files with the extension pdf in a directory

From Dev

List all files in a directory except for an extension

From Dev

How to delete all files in a directory except some?

From Dev

In Linux terminal, how to delete all files in a directory except one or two

From Dev

How to delete all files in a directory except some globs using Puppet?

From Dev

How to delete all directories inside a directory except for files, (safely)?

From Dev

How to delete all files inside a directory except some extensions?

From Dev

Delete all files in a directory

From Dev

Python - Delete all files EXCEPT for

From Dev

Delete files of particular extension except one in Linux

From Dev

.htaccess Redirect entire directory except pdf files

From Dev

list all files with extension .log except one

From Dev

Use find to find certain directory and delete all files in it except one directory

From Dev

How to delete all files and directory except one named directory from a specific folder in centos

From Dev

Perl delete all files in a directory

From Dev

Copy all files in hadoop directory except 1

From Dev

Copy all files in hadoop directory except 1

From Dev

How to hgignore all files of a particular extension except in one directory and its subdirectories?

From Dev

Delete all files except filenames with specific string

From Dev

How to delete all files except directories?

From Dev

Delete all files except in a certain subdirectory with find

From Dev

PHP Delete all files except the following

From Dev

Delete all files in the folder except one extension(say .idf) using batch file

From Dev

Bash Script delete files in directory except those listed in different files

From Dev

Delete all files in a directory, but keep the directory?

From Dev

delete all files in a directory that are not in a copy of a directory

From Dev

Shell script: How to delete all files in a directory except ones listed in a file?

From Dev

BAT file: Delete all files in directory older than 5 days except one file

From Dev

How to delete all files except some specific file (for many folders in a directory)? via bash script

Related Related

  1. 1

    Delete all files except files with the extension pdf in a directory

  2. 2

    List all files in a directory except for an extension

  3. 3

    How to delete all files in a directory except some?

  4. 4

    In Linux terminal, how to delete all files in a directory except one or two

  5. 5

    How to delete all files in a directory except some globs using Puppet?

  6. 6

    How to delete all directories inside a directory except for files, (safely)?

  7. 7

    How to delete all files inside a directory except some extensions?

  8. 8

    Delete all files in a directory

  9. 9

    Python - Delete all files EXCEPT for

  10. 10

    Delete files of particular extension except one in Linux

  11. 11

    .htaccess Redirect entire directory except pdf files

  12. 12

    list all files with extension .log except one

  13. 13

    Use find to find certain directory and delete all files in it except one directory

  14. 14

    How to delete all files and directory except one named directory from a specific folder in centos

  15. 15

    Perl delete all files in a directory

  16. 16

    Copy all files in hadoop directory except 1

  17. 17

    Copy all files in hadoop directory except 1

  18. 18

    How to hgignore all files of a particular extension except in one directory and its subdirectories?

  19. 19

    Delete all files except filenames with specific string

  20. 20

    How to delete all files except directories?

  21. 21

    Delete all files except in a certain subdirectory with find

  22. 22

    PHP Delete all files except the following

  23. 23

    Delete all files in the folder except one extension(say .idf) using batch file

  24. 24

    Bash Script delete files in directory except those listed in different files

  25. 25

    Delete all files in a directory, but keep the directory?

  26. 26

    delete all files in a directory that are not in a copy of a directory

  27. 27

    Shell script: How to delete all files in a directory except ones listed in a file?

  28. 28

    BAT file: Delete all files in directory older than 5 days except one file

  29. 29

    How to delete all files except some specific file (for many folders in a directory)? via bash script

HotTag

Archive