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.
|
19
|
|||||||||
|
|
|
/home/chaos/project. |
||||
|
|
|
|
||||||||||||||||||||
|
|
|
c:\fubar\projectname |
|||
|
|
Locally /home/berek/projects Also store it in my SVN |
|||
|
|
|
|
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. |
|||
|
|
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. |
||||||||||||||||||||
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
|
|
C:\Projects |
||||
|
|
|
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. |
|||
|
|
|
|
C:\InetPub\wwwroot\ [project name] I keep notes in My Documents though... things like progress logs, code snippets, backups. |
|||
|
|
|
|
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. |
|||
|
|
|
|
|
|||
|
|
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 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:. |
|||
|
|
|
|
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. |
||||||||||||||||
|
|
|
~/depots/... |
|||
|
|
|
|
In Vista C:\Users\James\Projects (same level as Documents) |
||||
|
|
|
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! ^^ |
|||
|
|
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. |
|||
|
|
Somewhere in version control system (VCS). D:\Projects\PRJNAME will have local checkout of code for developers (well, if they are using Windows!) |
|||
|
|
|
|
/home/sean/Documents/[Project Name]/src/ I suppose the equivalent in Windows would be: C:\Documents and Settings\Sean\My Documents\[Project Name]\Source\ |
|||
|
|
|
|
I keep it safe. In a password-protected RAR. |
||||||||||||
|
|
|
C:\dev\ |
||||||||
|
|
|
~/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... |
|||
|
|
|
|
Default location for Visual Studio which is %UserProfile%\Visual Studio 2008\Projects. |
||||
|
|
|
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 |
|||
|
|
|
|
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. |
|||
|
|
c:\svn (since we use SubVersion...) |
|||
|
|
|
|
G:\projectname\ I too save C: for OS and programs |
|||
|
|
|
|
C:\dev\projects for project directories and C:\dev\workspaces for Eclipse workspaces |
|||
|
|
