Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. %2D%2D%5B%5B+What%27s+the+easiest+way+to+delete+all+the+files+with+AMS+except+one%3F+Here+is+a+simple+snippet+to+do+the+job%3A%5D%5D%0D%0A%0D%0A%2D%2D+The+function%0D%0Afunction+File%2EDeleteAllExcept%28strPath%2C+strFile%29%0D%0A%09tblFiles+%3D+File%2EFind%28strPath%2C+%22%2A%2E%2A%22%2C+false%2C+true%2C+nil%2C+nil%29%3B%0D%0A%09for+i%2Ce+in+pairs%28tblFiles%29+do%0D%0A%09%09strPath+%3D+String%2ESplitPath%28tblFiles%5Bi%5D%29%3B%0D%0A%09%09strFilename+%3D+strPath%2EFilename%2E%2EstrPath%2EExtension%3B%0D%0A%09%09if+strFilename+%7E%3D+strFile+then%0D%0A%09%09%09File%2EDelete%28tblFiles%5Bi%5D%2C+false%2C+false%2C+false%2C+nil%29%3B%0D%0A%09%09end%0D%0A%09end%0D%0Aend%0D%0A%0D%0A%2D%2D+Example%3A%0D%0AFile%2EDeleteAllExcept%28%5FDesktopFolder%2E%2E%22%5C%5CPersonal+Pictures%5C%5C%22%2C+%22rainyday%2Ejpg%22%29
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement