folders

Apache's private vs protected folder

Maybe it's too late, but I can't google any useful information about differences between Apache's private and protected folders. What files would I put inside private and what inside protected? ...

To take the backup of required files of SVN repository

Dear All, I need to take the backup of one folder of my SVN repository. for this i have tried with svndump and svndumpfilter commands but of no use. Can any one pls. explain how to do this with an example. Thanks Mohan ...

Return a Folder GUID from a SharePoint Custom Workflow Activity

Hi there, Has anybody ever written code to return the GUID of a folder in SharePoint Workflow Activity so I can then pass it into a Workflow Variable? Would be really keen to see a code sample if you have one! Thanks ...

Folder comparions on Command line

Hello, I want to compare two folders on Windows(Vista, XP) which have large number of huge size files, which i need to compare. If i use beyond compare or such tool to compare the folders it is taking lot and lot of time if i do it manually. I need to add that folder comparison to batch file. So, On a Windows(XP, Vista), Is there any c...

Using Delphi to track changes made to folder?

Hi there, 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 it. Please help. Thanks. ...

MSI Installer and custom folders

Hi! I have an interesting problem. I created a MSI Installer for a .NET 3.5 Application. During the install process I ask the user for a custom folder name where application output files should be stored. To solve this task I have added a "Textboxes A" user interface item. I assigned TextBox Edit1 a property. This property I used in ...

Ideal Folder Structure of MVC framework

Hello guys, 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 on this single installation of xyz framework rather than installing the framework for each site. This is probably done in Co...

CodeIgniter, newbie questions

Hi, I want to program in the CodeIgniter few domain and 2 admins under a linux machine. one.com two.com three.com ....com and in addition to i need two backend systems. reports cms only few things are similar between the domains. and can be shared what is the best folder structures for that? after you suggest your structure, how do...

Copy/Move an object from another person, what to do with createdBy/On and modifiedBy/On

If you copy or move an object that somebody else created, what should you do with the createdBy, createdOn, modifiedBy and modifiedOn? With move, I would change the modifiedBy and modifiedOn. With copy, I would change both the createdBy/createdOn and modifiedBy/modifiedOn. Is this correct? In my example the data gets persisted to a d...

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 ? ...

List folders and subfolders from a directory in Excel with hyperlinks?

Hi, I am looking for a vb script that would list the folders and subfolders from a directory, and output it to excel so that i could open the folders via hyperlinks. I am trying to create a sort of directory index that collates about 100 parent folders from 2 directories located on 2 different servers. Some parent folders have up to ...

Zend Studio for Eclispse Expand All feature

Hello, is there a way to select a folder and somehow expand all the child folders of the selected folder? It would be very useful. The issue that I imagine is that because in Zend Studio php files are expandable also so they can show their classes namespaces methods and etc if there is a way to expand a folder and all its subfolders it ...

trying to find a zip file for ANTLR

I'm trying to follow the steps in this tutorial and the files listed in step 5 (part 1) don't make sense as ther referenced zip file (DOT-NET-runtime-3.1.3.zip) is not in the listed folder (or it's equivalent in 3.2). Where did it go? ...

How do I sort files into multiple folders in MATLAB?

I am little stuck on a problem. I have tons of files generated daily and I need to sort them by file name and date. I need to do this so my MATLAB script can read them. I currently do this manually, but was wondering if there is a easier way in MATLAB to sort and copy files. My file names look like: data1_2009_12_12_9.10 data1_2009_12_...

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 = $_SERVER['HTTP_HOST']; if($port == 443){ $type = "https"; } else { $type = "http"; } return $type . "://" . $ser...

How to find the path of the "Shared Documents" folder from c#?

In Windows Vista, the special folder "Shared Documents" contains documents accessible by all the users in the machine. That folder was renamed to "Public Documents" in Windows 7. How can I find its physical path from c#? Note that Environment.GetFolderPath(Environment.SpecialFolder.xxx) doesn't have the folder I'm looking for. ...

Make a folder in SVN writable so that when the repo is checked out, the permissions are already set to writable?

I'm not a Subversion pro by any means. But I am using it for my coding projects and using the deployment feature at springloops.com (love it). I have some log, cache and image folders that I routinely need to make writable on new deployments or new projects. Is there a way to make it so that when deploying or downloading, the folder p...

Copy nested folders contents to one folder recursively (terminal)

I have a Wordpress upload folder that is structured using subfolders for months. wolfr2:uploads wolfr$ tree . . |-- 2007 | |-- 08 | | |-- beautifulkatamari.jpg | | |-- beautifulkatamari.thumbnail.jpg | | |-- beetle.jpg | | |-- beetle.thumbnail.jpg How do I use terminal to copy all the images recursively into another ...

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 > all the stuff Then, what I want to do is access a file that is in the "MainFolder". I know I can get the path of the AppBundle by using...

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 be like this: cakephp1.x |------ 1.2 |------ 1.3 |------ master I know you can use git checkout -t origin/branch to swi...