vote up 25 vote down star
19

Your code is of course checked into a repository somewhere, but where do you keep your working copy/copies? C:\Program Files isn't right, as it's for installed packages. My Documents somehow doesn't seem right, either—a My Code folder next to My Music and My Pictures? Dumping in C:\ is messy, but seems to be "working" for other people in my office.

flag
3  
How uses caps in directory and file names any ways. not to speak of spaces :(. Anyways. It's a matter of personal preference. I don't see point in a discussion on how to name directories. – ronnybrendel Jun 7 at 1:50
1  
May I suggest rephrasing the question to make it more OS agnostic, or at least to encourage responses from people using other platforms? There are some good comments from developers on other platforms, and it's interesting to see where people store their source on MacOS/linux etc. :) – Bayard Randel Jul 9 at 1:33
show 2 more comments

176 Answers

vote up 1 vote down

c:\work, cvs, git.

Complete encrypted copies of source code control archives are sent to a remote location each night. Private keys for decryption are kept in few places, plus in a vault. Printed on paper.

link|flag
vote up 0 vote down

/home/username/progs/(language name)/(project name)/ Also with backup copies on two usb keys and sometimes a backup on my windows machine.

I tend to be a bit of a neat freak when it comes to organizing my files...

link|flag
vote up 3 vote down

I put mine in c:\src

link|flag
vote up 0 vote down

In my $HOME I keep a $HOME/svn and $HOME/git directory that is sorted by areas of work. E.g.

$HOME/svn/$employer/ has all of my professional projects $HOME/svn/googlecode/ has all of my googlecode projects

I don't keep any code not in external revision control UNLESS it is very trivial.

link|flag
vote up 0 vote down

At work, at C:\Projects to prevent the anoying 'can't run programs from networkshare errors' At home, same as work but trying to setup a SVN on my NAS (CH3SNAS)

link|flag
vote up 1 vote down

In linux:

~/proyectos

In windows in lazier and my code ends up on my desktop or wherevere my IDE puts code in by default.

link|flag
vote up 0 vote down

C:\wamp\www

for PHP projects

link|flag
vote up 0 vote down

/home/andrea/coding

link|flag
vote up 0 vote down

i have in on D:\perl* but also in SVN and copy on USB sticks

link|flag
vote up 0 vote down

usb stick :>

link|flag
vote up 0 vote down

I Keep mine in a drawer beside my desk. Next to the type writer.

What the hell sort of question is this LoL

link|flag
vote up 0 vote down

C:\Users\Me\Desktop\Src\

link|flag
vote up 0 vote down

D:\working\

or

/home/working/

This allows for multiple projects, and keeps things much more organized.

Organization creates efficiency in the long-run.

link|flag
vote up 1 vote down

D:\data\projects\project_XYZ

And D:\data is the only directory which needs backing up.

link|flag
vote up 1 vote down

remote git + local git + backup drive.

link|flag
vote up 0 vote down

D:\Users\*UserName*\Projects\*ProjectGroup*\*Project*

%USERPROFILE% in my enviroment is set to D:\Users\*UserName*. We have several sets of software tools that are based off of one product, so this keeps them organized, backed up (by CorporateIT who pull that directory), and mirrors our repository.

link|flag
vote up 0 vote down

c:\htdocs

(along with subversion on NAS)

link|flag
vote up 0 vote down

Vista

C:\Users\oreyes\projects\

XP

C:\oreyes\projects\

Unix ( when I have one : ( )

/home/oreyes/projects

link|flag
vote up 72 vote down

Wow. All these people who trust their code on these "hard drives". Please.

I have a batch process. It utilizes the latest Microsoft(R) Windows(R) .NET(R) FIleSystemWatcher technology. When I save, it kicks off my batch file.

My batch file then walks my directory to find all changes. It copies the modified files to my second hardrive, my USB Drive, and a floppy disk - just in case. It then scps them to a secure offsite location, and then to my home network.

Both my secure offsite location and home network monitor the incoming files. When they detect new ones, they make true hard copies - they print the suckers. At each location, I've set up an automated mover which is basically a Lego(R) MindStorms(R) arm that grabs the fresh-off-the-printer source code. At the facility, it then passes it to a second arm, which files the document in a secure, fireproof safe - indexing it by filename, date and time. At home, I just have it put it in a box under my bed, so I feel all warm and fuzzy at night.

This process has saved me so many times. For example, just the other day my customer decided that the thing he told me to delete that I swore to him he would need and pleaded not to delete because we surely would just need to restore it later on, needed to be restored, because he was wrong about us deleting it, and he actually did need it. So I kicked off my restore process, which pulls in the copies from my other partition, my USB drive, and then contacts my offsite facility, which retrieves the version, OCRs it, and sends it back down my reverse-tunneled SSH connection. It then compares all three versions, and, finding them all in agreement, restores the file just like new.

Sure, keeping up with all that can be expensive, but you know, you just can't be too careful. Luckily, with this process, I can have my batch script automatically monitor all of my drives, so it doesn't really matter where I keep it at - it does the right thing.

Of course, that's all for my work stuff. For personal projects, I just keep them in C:. Why bother with folders, ya know?

link|flag
8  
Pure gold right there! – PostMan Jun 7 at 1:46
1  
I won't ask what you do with the Original Packaging! – Adam Liss Jun 7 at 4:10
3  
But what if the printer runs out of paper or toner/ink? – Adam Rosenfield Jun 7 at 4:19
1  
Just because we are naming the directory we work from doesn't mean there aren't backup systems also. – Loren Pechtel Sep 3 at 23:03
1  
I like the robot arms, but if you were really serious about your code you would have ninjas involved. I saw no mention of ninjas. – LoveMeSomeCode Oct 20 at 14:41
show 7 more comments
vote up 0 vote down

c:\[company_name]\[project_type]\[project]\[branch]\...
Where I have c:\[company_name] mapped to a separate physical hard drive.

link|flag
vote up -2 vote down

D:\data\[project]

link|flag
vote up 0 vote down

On my dev box, C:\ holds OS and all installed apps. D:\Source is where all my projects live, D:\Mine is where my docs/pictures/music/etc are.

D: is different physical disk than C: -- that helps with overall performance of the system.

link|flag
vote up 10 vote down

I have everything under source control, so I'm not really worried about losing the source. Therefor, I have it all under My Documents\My Code\Projects.

However, what I don't like about it, is the fact, that whenever I need an absolute path - it's a lot of typing. Or some tools don't even support paths that are this long... Therefor, I have this line executed, whenever windows boots:

subst P: C:\Users\username\Documents\My Code\Projects

So, all of my projects are accessible from paths: P:\ProjectName.

I think more people should know about this subst command. Then we'd rarely hear anything about paths being too long... ;)

link|flag
show 4 more comments
vote up 1 vote down

C:\Projects

I modified the Group Policy which applies to our development machines to automatically create that folder and assign full control to the Developers group. It's also excluded from anti-virus scanning.

If you're working with several developers, standardise on one folder for your admin's sake! :)

link|flag
vote up -2 vote down

/git/ -(which is a symlink to)-> /var/local/git/ (/var has its own partition)

link|flag
show 1 more comment
vote up -3 vote down check

Now that I seem to be able to use Cygwin's tools to do my building, source control access, etc., I think I will be using:

C:\cygwin\home\david\workspace[project]

This is an Eclipse workspace directory. Each project directory inside will be a git working tree.

link|flag
1  
Yay! The most down-voted answer is the accepted answer! – Ates Goral Oct 20 at 14:36
show 1 more comment
vote up 0 vote down

On a backed up network folder, which is mapped as my H:\ drive. That way I don't have to worry about backups.

link|flag
vote up 1 vote down

I keep mine on SVN/Git, Dropbox as a backup and on C:\Mingw\Projects\

link|flag
vote up 0 vote down

D:\Software\

Found out there's an unpublished exclusion to the Virus Checker that skips that directory :)

link|flag
vote up 0 vote down
~/dev

Short and easy to reach.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.