Tagged Questions
The folders tag has no wiki summary.
139
votes
16answers
93k views
How to ignore a directory with SVN?
Just started using SVN and I have a cache directory that I don't need under source control. How can I ignore the whole directory/folder with SVN?
Edit: Using Versions and TextMate on OSX and ...
23
votes
11answers
14k views
Changing the default folder in emacs
I am fairly new to emacs and I have been trying to figure out how to change the default folder for c-x c-f on start up. For instance when I first load emacs and hit c-x c-f its default folder is ...
15
votes
5answers
23k views
13
votes
3answers
5k views
How do I copy a folder and all subfolders and files in .NET? [closed]
Possible Duplicate:
Best way to copy the entire contents of a directory in C#
I'd like to copy folder with all its subfolders and file from one location to another in .NET. What's the best ...
10
votes
3answers
1k views
very quickly getting total size of folder
I want to quickly find the total size of any folder using python.
import os
from os.path import join, getsize, isfile, isdir, splitext
def GetFolderSize(path):
TotalSize = 0
for item in ...
10
votes
8answers
14k views
How do you get a directory listing in C?
How do you scan a directory for folders and files in C? It needs to be cross-platform.
9
votes
2answers
6k views
Git ignore sub folders
I have a lot of projects in my .Net solution. I would like to exclude all "bin/Debug" and "bin/Release" folders (and their contents), but still include the "bin" folder itself and any dll's contained ...
9
votes
7answers
3k views
Popular folder structure for build
I am wondering what the popular or best way to organise your build assets and source code within a project is?
9
votes
4answers
4k views
asp.net mvc - subfolders
How does the new Microsoft asp.net mvc implementation handle partitioning your application - for example:
--index.aspx
--about.aspx
--contact.aspx
--/feature1
--/feature1/subfeature/action
...
7
votes
2answers
600 views
How to make something like iPhone Folders?
I'm wanting to know if there's a way I can transform my view to look something like iPhone folders. In other words, I want my view to split somewhere in the middle and reveal a view underneath it. ...
7
votes
3answers
10k views
Python: Importing modules from parent folder
I am running Python 2.5.
This is my folder tree:
ptdraft/
nib.py
simulations/
life/
life.py
(I also have __init__.py in each folder, omitted here for readability)
How do I import ...
6
votes
6answers
849 views
Is there a faster way than this to find all the files in a directory and all sub directories?
I'm writing a program that needs to search a directory and all its sub directories for files that have a certain extension. This is going to be used both on a local, and a network drive, so ...
6
votes
8answers
2k views
Is sub-domain better or sub-folder?
I have a classifieds site and I want to know whether creating subdomains or sub-folders is better, as I am in state of confusion.
If we need to take sub-domains then what are the benefits which we ...
6
votes
5answers
1k views
How do you manage and organize your files? (scripts, repos, downloads, pdf's, etc)
Like many of you, I have to deal with a large amount of files: source code, binary downloads, spreadsheets, pdf's, word docs, images, note files, quick scripts, and more.
These files can fall into ...
6
votes
4answers
3k views
Renaming the containing project folder in VS.net under TFS
I have a vs.net project, and after some refactoring, have modified the name of the project. How can I easily rename the underlying windows folder name to match this new project name under a TFS ...
5
votes
1answer
1k views
Get My Documents folder path in delphi
i use the following code to get special directories
uses
ActiveX, ShlObj;
procedure TForm1.Button1Click(Sender: TObject);
// Replace CSIDL_HISTORY with the constants below
var
Allocator: ...
5
votes
1answer
9k views
Working with paths from [[NSBundle mainBundle] resourcePath]
I'm sure it's a very basic problem, but I'm having trouble finding anything about it.
Say I've got my app in a folder, in some more folders, like this:
MainFolder > SecondaryFolder > AppBundle.app ...
5
votes
3answers
832 views
Using Delphi to track changes made to folder?
I need to writing a delphi program which will monitor a folder for changes (Add, update, rename and removal of files).
Is the TShellChangeNotifier is way to go? To be honest, I have no idea how to use ...
5
votes
7answers
458 views
ProgressBar when Scanning a Hard Drive
So, I'm doing a simple scan to get a list of all folders on a hard drive (c:\windows and c:\windows\system32 are considered separate entries). If I wanted to provide a progress bar for this 1-2 ...
5
votes
4answers
5k views
C# Best way to get folder depth for a given path?
I'm working on something that requires traversing through the file system and for any given path, I need to know how 'deep' I am in the folder structure. Here's what I'm currently using:
int ...
5
votes
2answers
4k views
Projects folder structure recommendation
I'm getting ready to implement a source control system (subversion) but I'm facing some doubts on how to structure my folders.
I use Delphi for all my development and compile the projects from within ...
5
votes
2answers
2k views
Where did these hex named folders come from?
First off, I am using Windows XP. I have multiple hard drives and it looks like something decided to make some folders on the second one ( which is just a data drive, no os ). These folders all have ...
5
votes
6answers
132 views
Compressing / Decompressing Folders & Files in C#?
Anyone know of a good way to do this in C# quickly? Handling large files might be necessary. Thanks in advance? :)
4
votes
2answers
401 views
C# folder sync library
I'm looking for an easy to use library/algorithm that can sync two folders locally (one-way or two-way)
4
votes
2answers
425 views
Automatic create folders in directory c#
I need a script that can create a sub folders automaticaly.
For example:
I have a base folder stored at c:/upload. I tranfer to script folders string: /2011/23/12/3. Script should parse this string ...
4
votes
2answers
1k views
How can I recursively delete folder with a specific name with PowerShell?
I can delete files with specific extensions in multiple folders with this:
Get-childitem * -include *.scc -recurse | remove-item
But I also need to delete folders with a specific name - in ...
4
votes
2answers
1k views
How to specify multiple source folders in build.properties when using ant to build Android projects?
Apparently, I can specify source folders using the source.dir property in build.properties - but what if I want to specify multiple source folders ?
The comments below are from the build.xml file ...
4
votes
1answer
425 views
How do I test to see that a directory is empty in ANT?
How can one test to see that a directory is empty in ant?
4
votes
1answer
665 views
In Ant, copy all files from a tree of folders into a single folder?
Is it possible to use Ant to copy all the files (not folders) from a hierarchy of folders into one destination folder?
For instance, I have a tree like this:
res
|-images
| |-fg.png
| +-bg.png
...
4
votes
3answers
339 views
How to make my Python unit tests to import the tested modules if they are in sister folders?
I am still getting my head around the import statement. If I have 2 folders in the same level:
src
test
How to make the py files in test import the modules in src?
Is there a better solution (like ...
4
votes
1answer
2k views
Ideal Folder Structure of MVC framework
I would like to ask what is the ideal folder structure for a MVC framework that should be able to support multiple installations. For example, I install xyz framework and i run two or more sites based ...
4
votes
2answers
2k views
Folder structure for a C project
Hey guys, which options do we have for the folder structure of a C project? I also would like to do TDD, so I need that that structure accommodates a test directory.
What do you think?
4
votes
5answers
727 views
Linux: Move 1 million files into prefix-based created Folders
I have a directory called "images" filled with about one million images. Yep.
I want to write a shell command to rename all of those images into the following format:
original: filename.jpg
new: ...
4
votes
3answers
6k views
How can I recursively copy a directory into another and replace only the files that have not changed?
I am looking to do a specific copy in Fedora.
I have two folders:
'webroot': holding ALL web files/images etc
'export': folder containing thousands of PHP, CSS, JS documents that are exported from ...
3
votes
1answer
52 views
Actual folders in Visual Solution Explorer?
MS Visual Studio has Solution Explorer where I can see all project files, I can also create filters which are like folders for files to keep them in groups. The problem is - I want my files divided in ...
3
votes
3answers
82 views
Java - Difference between dist and deploy folders
Forgive me for a novice question, but what is the difference between the dist and deploy folders? It seems like the same thing - both contains the .jar of the files. However, when you clean and build ...
3
votes
4answers
158 views
Can't get Python to read until the end of a file
I have tried this a few different ways, but the result always seems to be the same. I can't get Python to read until the end of the file here. It stops only about halfway through. I've tried Binary ...
3
votes
2answers
874 views
VB 2010: How to copy all subfolders of a folder in an other folder?
I got a question in Visual Basic 2010: How can I copy all subfolders (only the subfolders, not the main folder) into another folder?
Thanks for the help!
Regs,
Flo
3
votes
3answers
428 views
How to select multiple folders [closed]
Possible Duplicate:
How to select multiple folder path usingt FolderBrowserDialog control in vb.net
I want to select many folders for performing some operations on them, like selecting
many ...
3
votes
2answers
125 views
Folder selection in Ant
As part of a build I am copying files to a user specified folder.. Right now I am doing it like this:
<input message="Select Drive to Install Trainer"
addproperty="trainer.drive" ...
3
votes
2answers
620 views
how to display folders and sub folders from dir in PHP
I am trying to get a list with folders and sub folders i have the following that allows me to get the folders and sub folders but i needed it to be sorted out like the e.g below i have been trying but ...
3
votes
1answer
607 views
php creating zips without path to files inside the zip
I'm trying to use php to create a zip file (which it does - taken from this page - http://davidwalsh.name/create-zip-php), however inside the zip file are all of the folder names to the file itself.
...
3
votes
1answer
202 views
Downloads folder: not special enough?
In .Net we can retreive the paths to 'special folders', like Documents/Desktop etc. Today I tried to find a way to get the path to the 'Downloads' folder, but it's not special enough it seems.
I know ...
3
votes
2answers
3k views
How to read an IIS 6 Website's Directory Structure using WMI?
I need to read a website's folders using WMI and C# in IIS 6.0. I am able to read the Virtual directories and applications using the "IISWebVirtualDirSetting" class. However the physical folders ...
3
votes
1answer
458 views
How to remove svn folders over FTP on Windows hosting
I've accidentally copied a large part of a folder tree from my SVN working copy to my shared Windows web host via FTP.
The site is now littered with .svn directories and and I need some way of ...
3
votes
3answers
3k views
Delete Folders and Containing Files - VB.NET
I have a really quick question. My program actually downloads a zip file then extracts it onto their desktop. But I need an uninstall feature for it, which is basically deleting multiple folders and ...
3
votes
3answers
401 views
Checking out the branches of a git repository into sub folders?
Is it possible to take a repository (such as CakePHP1.x @ http://github.com/cakephp/cakephp1x) and checkout the master plus branches into sub-folders?
For example, my desired folder structure would ...
3
votes
5answers
202 views
PHP Determining the current url
I need to modify my function to return also the current folder I am in. Here is my current function:
function getLinkFromHost($url){
$port = $_SERVER['REMOTE_PORT'];
$server = ...
3
votes
3answers
4k views
Batch : recursively delete all folders starting with
I need to write a command in a .bat file that recursively deletes all the folders starting with a certain string. How may I achieve this ?
3
votes
1answer
305 views
How to group partial shared views for specified controllers?
Is it possible to tell ViewEngine to look for partial shared views in additional folders for specified controllers (while NOT for others)?
I'm using WebFormViewEngine.
This is how my ...