my tweets
- Buzz'd 3 hours ago
- @clickflickca tease! 4 hours ago
- that's me playing bejeweled blitz for the next half and hour 4 hours ago
- just unfollowed anyone that hasn't tweeted in the month of march, laterz... 4 hours ago
- @xALLIEbabax yum!!!!!! 4 hours ago
-
RSS Links
Archives
Blogroll
xcopy won’t copy .css files
I use xcopy as part of a build script to copy a bunch of files and directories from a subversion checkout directory to another directory so that I can zip them and upload them to a server.
I have an exclude file that I use to tell xcopy to ignore files like the obj directory and .cs codebehind files. I noticed that none of my .ascx and .css files were being copied?! Turns out the .cs entry in my excludes list was causing those other files that had .cs in the extension not to get copied.
The solution? Add a backslash to the end of the .cs entry so it looks like this:
.cs\
All your other files with .cs in the extension will now get copied.
Hope this helped someone!