Hyflex Posted June 22, 2014 Posted June 22, 2014 Hey Guys, I have no idea how to do this, but basically I have a folder that has main.tmp and various other temporary files but the other temporary files differ in names all the time, I want to delete ALL .tmp files with the EXCEPTION of main.tmp Does anyone know how I can achieve this and if so, how would I do such a thing? Thanks
Moderators Melba23 Posted June 22, 2014 Moderators Posted June 22, 2014 Hyflex,Use _FileListToArray to get an array of all the .tmp files and then loop through it deleting all but the one you wish to keep using a simple If structure. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
mikell Posted June 22, 2014 Posted June 22, 2014 ; $myfolder = @scriptdir FileMove($myfolder & "\main.tmp", $myfolder & "\main.bak") FileDelete($myfolder & "\*.tmp") FileMove($myfolder & "\main.bak", $myfolder & "\main.tmp")
Zedna Posted June 22, 2014 Posted June 22, 2014 @mikell clever & simple solution Resources UDF ResourcesEx UDF AutoIt Forum Search
mikell Posted June 22, 2014 Posted June 22, 2014 Thanks A bit simpler using FileChangeDir FileChangeDir($myfolder) FileMove("main.tmp", "main.bak") FileDelete("*.tmp") FileMove("main.bak", "main.tmp") FileChangeDir(@scriptdir)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now