another script

Hi.
This script was uploaded to one of my dropbox folders.
Its basic function.
delete defined temperary files in dropbox, then list what it has done
in a text file called tempfiles.
all deletions are silent
tFor refference to any coders.
run cmd
in command prompt
del /? should get you a help screen
@echo off
rem put this in the root of your dropbox folder and run it when you see issues.
echo The names of deleted temp files that can clutter up your dropbox
are stored here when you run the bat file. If there is nothing after
this line, you have none. >tempfiles.txt
del /s “*conflicted copy*” >>tempfiles.txt
del /s *.reapeaks >>tempfiles.txt
del /s *.sfk >>tempfiles.txt
del /s *.sfap0 >>tempfiles.txt
del /s .ds_store >>tempfiles.txt
del /s .trashes >>tempfiles.txt


Discover more from Jared's Technology podcast network

Subscribe to get the latest posts sent to your email.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.