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. – hydroes 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

1 2 3 4 5 6 next
vote up 117 vote down

D:\Projects

link|flag
1  
Same here, although I also have subdirectories for the repository type, as we currently use a mix of vss and svn. – R. Bemrose Feb 11 at 17:32
1  
D:\Projects at work, C:\Projects at home. This after not liking My Projects at the My Documents level. – Bratch Feb 12 at 4:44
74  
Now you make me want to use X:\Files for my projects! – Bratch Feb 12 at 21:38
6  
c:\dev. Why 8 why you can do it in 3. – Haoest Feb 13 at 22:19
10  
D:\Plane\boss\D\Plane ! – Allen Jul 9 at 2:37
show 13 more comments
vote up 71 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
7  
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
2  
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
show 7 more comments
vote up 45 vote down

What's wrong with My Documents? Code files are documents, aren't they?

I keep a Projects folder inside My Documents, which then branches out into the various working copies I might have checked out.

link|flag
8  
"What's wrong with My Documents?" - Some older compilers still have odd limits for path lengths, and "C:\Documents and Settings\username\My Documents\Projects\projectX\Source\filename.c" is too long. Rare, shouldn't be an issue, but there's one reason why my documents might not be best. – Adam Davis Feb 11 at 16:38
2  
So does creating a path variable to your projects folder. Place your files wherever you want. Don't forget you have tools for stuff like this. – Orion Adrian Feb 11 at 16:55
7  
Another reason is that sometimes you are developíng stuff that will be accessed by a service, and service accounts don't normally have access to %USERPROFILE%\Username stuff. I really feel that mucking with permissions in %USERPROFILE% folders is asking for trouble. – Euro Micelli Mar 1 at 4:52
1  
I don't use My docs because at my work we have a roaming profile (which place doesn't) and it will sync everytime. SVN all the way and checkout to sperate partition – PoweRoy Jun 22 at 7:32
1  
I have seen windows doing horrible things to My... folders... like... deleting the whole thing because it failed to move it to a new profile (think changing domain or other such delightful surprises IT can have in store for you). So forgive me but no... as a programmer myself I do not trust programs to "just work" and windows still has a long wy to go to gain my trust in this regard. Dedicated partition or drive for all my stuff is it for me with the regular check-ins to keep paranoia at a bearable level – Newtopian Jul 9 at 2:48
show 15 more comments
vote up 43 vote down

C:\dev\

link|flag
2  
me, too, although dev is used as device in linux. – Haoest Feb 13 at 22:21
16  
@Haoest - then you get a fun time of it when you make a project called null :) – Robert Grant Mar 3 at 16:53
show 2 more comments
vote up 36 vote down

/home/chaos/project.

link|flag
1  
/home/me/code/project for me (no home folder namespace pollution). – Zifre Jun 6 at 23:45
show 2 more comments
vote up 36 vote down

Never in the C:\ drive on windows. I usually leave that for the OS and programs, as it can easily be replaced/re-formatted if something goes wrong (eg. viruses).

Stuff usually goes in X:\work.

link|flag
5  
Really, Never ever save anything sensible on the C: drive while using Windows. – goodrone Feb 11 at 17:53
4  
Remember folks, c: is for cruft you can replace, d: is for data :) – Jim OHalloran Feb 12 at 2:58
4  
Since he specified that "Your code is of course checked into a repository" then code falls under the category of "cruft you can replace" – magnifico Feb 12 at 4:38
33  
So C:\ is only for Windows and viruses? got it. – seanhodges Feb 12 at 9:45
show 4 more comments
vote up 29 vote down

C:\Projects

link|flag
2  
I actually use c:_projects as it makes it a bit faster to find. – mliesen Feb 11 at 23:55
show 4 more comments
vote up 26 vote down

More often than not, mine ends up in the recycle bin.

I keep it on an external HD and pull it over to the PC when working.

link|flag
show 2 more comments
vote up 19 vote down

Locally

/home/berek/projects

Also store it in my SVN

link|flag
vote up 14 vote down

What a thoroughly pointless question. -1.

link|flag
11  
What a brave answer. +1. – Ctrl Alt D-1337 Feb 23 at 10:08
3  
@Ctrl Alt D-1337 What a nice username. +1 – presario Oct 1 at 10:08
show 1 more comment
vote up 11 vote down

My personal source is in "~/src/", and has been for a long time. Under Cygwin I put it in "~/tmp/" if it's temporary or "My Documents\temp\" if it's Windows related. Long term projects go in "c:\opt\" which is linked to from "/opt/" under Cygwin. Using "c:\opt\" makes it much easier when it comes to Eclipse, backups and Windows Explorer.

link|flag
show 3 more comments
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 9 vote down

In Vista

C:\Users\James\Projects (same level as Documents)

link|flag
2  
never store your personal things on C in windows. – tharkun Apr 10 at 19:21
vote up 6 vote down
My Documents\Work\[Client Name]\[Project Name]\Working Code
link|flag
show 3 more comments
vote up 6 vote down

Source Control. As long as it is there it doesn't matter where else it is.

link|flag
show 1 more comment
vote up 5 vote down

/home/bilkis/dev

:D

link|flag
3  
Why did I see that as "bikinis"? – Andrew Jul 9 at 2:19
show 1 more comment
vote up 5 vote down

I keep it safe. In a password-protected RAR.

link|flag
12  
My precioussssssSSss – Ric Tokyo Feb 11 at 23:50
14  
don't need password protection, I just code it extremly unreadable :) – Tim Büthe Feb 24 at 8:24
4  
Perl is my security – Charlie Somerville Jun 7 at 0:48
show 8 more comments
vote up 4 vote down
/dev/null

I'm amazed at how much data that directory can hold!

link|flag
2  
hahaha love it. – Nick Bedford Oct 1 at 10:23
show 1 more comment
vote up 3 vote down

I mimic our source control on my local system. I have a folder with the name of the source control server, and then subfolders for each database.

Ex.

C:\SourceControlServer\Database1\ C:\SourceControlServer\Database2\

It makes it clean for me to keep all our projects organized, especially since we have several databases and have had to change servers in the past.

link|flag
vote up 3 vote down

~/depots/...

link|flag
vote up 3 vote down

~/sexycodes/

link|flag
vote up 3 vote down

I put mine in c:\src

link|flag
vote up 3 vote down

D:\Code\

In fact I've made it a point since the Amiga times to always keep my "documents", things I create myself that are hard to replace, on a separate logical volume. On the Amiga i kept them on the work: partition.

This makes it easy to separate operating system from actual files I care about and do stuff like reinstall and add other operating systems into the mix with ease.

Windows and installed apps tend to drivel crap all over the old "My Documents" root so I've basically stopped using that. "My Images" and some other subfolders however I've redirected to D:\Images and so forth - not that it really matters.

My backup solution backs the entire D: using shadow copy, no exceptions, easy peasy.

It's not perfect for shared computers of course, but I don't think the question was about those. If so, the network home directory would be preferable - or in a non-roaming part of the user profile it the network isn't up to it.

At work it's D:\ companyname.

Also, any windows-specific folders except for your own user profile should not be writeable at all if you're running as a standard user - and if you're not, shame on you! ^^

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

f:\porn\[projectnane]

link|flag
vote up 3 vote down

D:\sandbox

Addendum: Technically speaking, your projects are what's in source control. Your sandbox on the other hand is a local copy of the projects that you're currently working on. Your sandbox doesn't need to be an up-to-date clone of your entire project repository. Therefore one could say that it makes more sense to call your local directory "sandbox" rather than "projects", since your local disk is not the best place to store your projects in the first place.

link|flag
show 2 more comments
vote up 2 vote down

C:/[home]/projects

which is then hard linked to

C:/projects

So I can access it easily, but the data is stored in the 'correct' directory - useful for backups, data transfers, computer upgrades. I don't have to search for everything.

junction is the linking program for windows. This is much easier and nicer in unix, though.

-Adam

link|flag
vote up 2 vote down

C:\InetPub\wwwroot\ [project name]

I keep notes in My Documents though... things like progress logs, code snippets, backups.

link|flag
vote up 2 vote down

~/Documents/projects/lib/various folders

My co-worker keeps his in /Source/lib/various folders

Eitherway various project folders can then be parallel to lib under projects orSource...

link|flag
vote up 2 vote down

Default location for Visual Studio which is %UserProfile%\Visual Studio 2008\Projects.

link|flag
1  
Agreed, I only access source through AnkhSVN anyway. – Blorgbeard Jul 9 at 2:45
vote up 2 vote down

c:\svn

(since we use SubVersion...)

link|flag
1 2 3 4 5 6 next

Your Answer

Get an OpenID
or

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