Hey again,
I think that is because there is no SNV directory set, or something, like in the one you posted on the first page here, but I could be wrong there. I can sort of "read" the code and more or less figure out what it's supposed to do, but I have no idea what it needs to work
kind regards,
Wearloga
Thinking you don't have the Tortoise CMD line tools installed. Open a CMD prompt and type svn and hit enter, if it says no program found blabla then you need to install the CMD line tools (option in the Tortoise install).
Anyone trouble shooting this should do this, open a CMD prompt and type in (using YOUR Directories):
Code:
svn update C:\HB_Dir\Routines\*.*
This will show you EXACTLY what happens verbosely. If there are skipped items, they are normally non SVN directories. You should be able to narrow it down by doing this.
You can do the same manually for the Bots directory and the Pluggins directory.
dirttrack
Edit this is what I am using now. I want to make it delete the cache folder in the wow directory and in the data directory too. How would I go about that? I made an attempt but it doesn't work yet.
Hey man, I can point you as someone else already did to ss64.com, there are many other sites for windows CMD and Batch files in general. If your really intrested in learning more, Google about cmd line pipes, redirects, and echo as well, that will explain what ">, >>, <, |" does as well. I won't post the whole command here as some bonehead will smoke his whole install and then freak out lol, but you can start by looking at the following cmds. Type them with a /? in most cases to get more help on syntax. For your specific question, if the Directory your trying to delete has folders below it, del won't work as expected, even with the recursive option. It will delete the FILES but not the Directories.
set << The way to see your basic windows environment variables, if you create a new one in a cmd line window YOU opened, it will not be there for other proccess's to see (unless you do some trickery).
del
rmdir or rd
mkdir or md
xcopy or even better
robocopy
deltree (sadly removed in newer versions of Windoze)
where
and a TON of others...
The following does exactly what you want, but with the windows USER Temp directory. This should not ever hurt anything, however if your computer ships itself to another country, smokes, blows up, ejaculates it's not my fault;-). You may need an administrative cmd line for this, in which cast make a shortcut type cmd for the name and cmd for what to run, then right click on the new shortcut, click properties, Compatibility, Run as Administrator...
IT WILL NOT ASK FOR PERMISSION, TO PASS GO, OR TO COLLECT $200. IT WILL DELETE THE FOLDER STATED AND EVERYTHING BELOW IT.
Code:
rmdir /S /Q %Temp%
md %Temp
This will delete your Windows user Temp files (note the System uses another Temp directory).
It will almost ALWAYS toss's a lot of errors about files being in use unable to delete, but will SMOKE all other old user Temp files. The reason I have the md %Temp% in there is just in case it IS able to delete this Critical folder it will be instantly recreated for Windows to keep using.
Hope that helps some, end of command line 101 for today;-)
Peace