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 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 118 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 0 vote down

c:\fubar\projectname

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

Locally

/home/berek/projects

Also store it in my SVN

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 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 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 0 vote down

For c#, just the default location For eclipse c:\users\tom\eclipse\ For python c:\users\tom\python\

No structure whatsoever, but my structure lies in source control, and not my machine.

link|flag
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 0 vote down

I use the Fossil VCS for personal projects. I keep Fossil executable, my repository, and my in development code on a thumb/flash drive. I also have SharpDevelop installed and running from the thumb drive. This gives me a fully portable dev environment. SharpDevelop is a free .NET IDE if you did not know.

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 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 6 vote down
My Documents\Work\[Client Name]\[Project Name]\Working Code
link|flag
show 3 more comments
vote up 0 vote down

For personal projects, I keep them in 'Documents\Source Code\'. I already have a strategy for keeping my Documents folder backed up, so this keeps my source code backed up the same way.

On very large projects, the file paths approach MAX_PATH, and so it becomes important that the first part of the path be kept very short, e.g. 'd:\src\'.

Back in the "old days", hard drives where never big enough, so source had to go on a separate drive from everything else. Today everything lives on C:.

link|flag
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 3 vote down

~/depots/...

link|flag
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 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 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 0 vote down

Somewhere in version control system (VCS). D:\Projects\PRJNAME will have local checkout of code for developers (well, if they are using Windows!)

link|flag
vote up 1 vote down

/home/sean/Documents/[Project Name]/src/

I suppose the equivalent in Windows would be:

C:\Documents and Settings\Sean\My Documents\[Project Name]\Source\

link|flag
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 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 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 0 vote down

Ideally it should be placed in a path without spaces, so anything under "Documents and Settings" on XP is out, as certain build scripts can have trouble with spaces.

It should be close to the drive root for easy access via command windows.

it might help to create an environment variable containing your workspace root that way you can type cd %work%

link|flag
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 2 vote down

c:\svn

(since we use SubVersion...)

link|flag
vote up 0 vote down

G:\projectname\ I too save C: for OS and programs

link|flag
vote up 1 vote down

C:\dev\projects for project directories

and

C:\dev\workspaces for Eclipse workspaces

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.