Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
4answers
3k views

Can I move the .git directory for a repo to it's parent directory?

I have two sub-directories each with a repo, thus : PPP/ |--ABC/ | |--.git/ | |--AAA/ | | BBB/ | | CCC/ | |--DEF/ | |--.git/ | |--DDD/ | |--EEE/ And would like to ...
8
votes
3answers
4k views

How to remove .htaccess password protection from a subdirectory

I have password protected my entire website using .htaccess but I would like to expose one of the sub directories so that it can be viewed without a password. How can I disable htaccess password ...
6
votes
9answers
6k views

In Unix, how do you remove everything in the current directory and below it?

I know this will delete everything in a subdirectory and below it: rm -rf <subdir-name> But how do you delete everything in the current directory as well as every subdirectory below it and ...
5
votes
2answers
391 views

Change the document root of a parked domain?

I have run into a problem which is that my web host doesn't appear offer addon domains. I currently have a domain name pointing to my name servers. I went into cPanel to add an addon domain that ...
5
votes
2answers
1k views

Bash - Recursively Create Nonexistant Subdirectories

I am creating a quick backup script that will dump some databases into a nice/neat directory structure and I realized that I need to test to make sure that the directories exist before I create them. ...
4
votes
1answer
84 views

how to be sure that two directories are not subdirectories to each other (BASH)

EDITED: this is more or less what I came up after @Mechanical's nice input. Any insight? #!/bin/bash path1="$(readlink -e "$1")" path2="$(readlink -e "$2")" EBADARGS=65 function checkArgsNumber() ...
3
votes
1answer
64 views

how to deploy django under a suburl behind nginx

I have a django application running on http://localhost:12345 . I'd like user to access it via url http://my.server.com/myapp . I use nginx to reverse proxy to it like the following: ... ... ...
3
votes
2answers
203 views

Non-recursive way to get all files in a directory and its subdirectories in Java

I am trying to get a list of all files in a directory and its subdirectories. My current recursive approach is as follows: private void printFiles(File dir) { for (File child : dir.listFiles()) { ...
3
votes
3answers
568 views

How to Limit The Depth of a Recursive Sub-Directory Search

I've got a function that currently grabs all folders and sub-folders to check the ACL's for a small tool I'm building but I'm pulling my hair out trying to figure out how to limit the depth that it ...
3
votes
2answers
548 views

Adding folders to a git repository while ignoring some subfolders

Im trying to add a directory "foo" to my repo, but there are some sub dirs lets call them "bar1", "bar2", "bar3" and "bar4" Now I want to add foo to my repo, while ignoring foo/bar2 and foo/bar3 is ...
3
votes
2answers
2k views

Running files in a directory recursively using ruby

I'm working on script right now which has to run each ruby script in a directory and its subfolders. e.g. run-all.rb - scripts - folder1 - script1.rb - script2.rb - folder2 - ...
2
votes
4answers
79 views

Moving specific files in subdirectories into a directory - python

Im rather new to python but I have been attemping to learn the basics to help in my research within geology. Anyways I have several files that once i have extracted from their zip files (painfully ...
2
votes
5answers
1k views

Deny access to all subdirectories using apache2 server configuration

How can one deny access to all subdirectories of a given directory? I tried to do it with the <Directory(Match)> directives. The server configuration (000-sites-enabled) looks like this: ...
2
votes
2answers
356 views

How to get mercurial to notice files added into subdirectories? (hg st, hg add)

If I add a new file into my project's root, it appears with a ? status in hg st, and gets added with hg add. However, if I add a new file into a subdirectory, it doesn't appear in hg st at all, and ...
2
votes
5answers
499 views

How can I determine if a subdirectory exists in C#?

In C#, how can one determine if a subdirectory exists? Is this neccesary when calling CreateSubDirectory?
2
votes
1answer
1k views

Zend Framework : Subdirectories in controllers directory

I'm using the Zend Framework for my website, and just created a special module "api" to create... Well, an API. Now, I have a lot of controllers in my module and I'd like to create subdirectories in ...
2
votes
3answers
129 views

mod_rewrite: hierarchical sub-domains into hierarchical sub-directories

Consider the following problem, please. I have got domain.tld with hierarchical sub-domains like the following: a.domain.tld b.a.domain.tld c.b.a.domain.tld ... etc. There is also hypothetical ...
2
votes
1answer
1k views

Passenger+nginx: Hosting a Rails application in a subdirectory

I'm trying to deploy an application in a subdirectory /a under www.myserver.com, following the steps in the Passenger docs here: ...
2
votes
1answer
154 views

Retrieving info of a very large directory

I hit Linux's 32,000 subdirectory limit. It caused problems with my PHP scripts and I don't want it to happen again. The simple solution is to have my PHP scripts check the current subdirectory ...
1
vote
1answer
34 views

Cmake - How to build a project separated in different subfolders

I am trying to build a big project with CMake but I struggle on how to write the CMakeList.txt file. My project is separated in different folders each containing a set of .hpp and .cpp files more or ...
1
vote
3answers
132 views

Makefile Subdirectories

I'm attempting to organize my project directory as follows shell |inc/[header files] |obj/[object files] |src/[source files] |Makefile |Executable Everything compiles without error with everything ...
1
vote
1answer
172 views

htaccess files with “deny from all” does it deny subdirectories as well?

If I have a directory structure like this: - index.php - public - img - css - application - controllers - user - admin - models - views .htaccess I'm using ...
1
vote
3answers
355 views

How can I use a subdirectory instead of a subdomain?

I'm building a rails app that I'll host on Heroku at domain.com. And I'd like to use WordPress for the blog hosted on phpfog, but I don't want to use a subdomain like blog.domain.com. I'd instead ...
1
vote
2answers
473 views

How to create and check a subdirectory in the Application Bundle

i have create a new subdirectory in my application bundle. This i have done in the xcode environment. target -> copy bundle resources now add a new folder create folder references for any added ...
1
vote
3answers
2k views

How to check if a specific file exists in directory or any of its subdirectories

In C#, how do I check if a specific file exists in a directory or any of its subdirectories? System.IO.File.Exists only seems to accept a single parameter with no overloads to search ...
1
vote
4answers
3k views

HTML - pick images of Root Folder from Sub-Folder

lets say following is the DIR structure of my website Now in index.html i can simply refer images like <img src="./images/logo.png"> but what if i want to refer the same image fron ...
1
vote
2answers
59 views

Java: Possible to consolidate empty subdirectories for packages that only contain other packages?

Good afternoon, all. I'm not too hopeful for a "yes" here, but if anyone can figure it out, the folks at SO can. I have a Java project that has the following package structure: src |-net | ...
1
vote
4answers
709 views

C# Search for subdirectory (not for files)

Every example I see seems to be for recursively getting files in subdirectories uses files only. What I'm trying to do is search a folder for a particular subdirectory named "xxx" then save that path ...
1
vote
2answers
163 views

How do I get names of subdirectories of a directory purely in python?

I dont want to use commands or any similar module that uses unix shell. Thanks in advance..
1
vote
4answers
444 views

How do I append all files in current and subdirs as command arguments?

I have a directory like this: dir dir/somefile.txt dir/subdir/subsub/somefile2.txt dir/subdir2/somefile.txt and I want to open all the files in all the subdirectories in a single instance of a ...
1
vote
4answers
2k views

How to list all subdirectories in a given directory in C?

Is there a way to list all subdirectories in a given directory path in C? I was hoping I would be able to do it with the stat() function but it only works on files.
1
vote
2answers
649 views

Apache Config - Exclude Subdirectories

Is there a way to apply a rule to a single directory and not its subdirectories without using .htaccess files? I want /var/www/html to order by the Date desc. However, in the subdirectories, I don't ...
1
vote
4answers
179 views

1 domain two separate applications

http://www.one.com and http://www.one.com/uk www.one.com is the main site, but there is a UK version of this site which ideally needs to be in a subdirectory (/uk). How do set IIS up to allow me ...
0
votes
2answers
53 views

CreateDirectory windows API usage in c++

i just found a little piece of code that let me create a directory with windows API without using system(). The only problem is that i can't create directory in subdirectory. For example ...
0
votes
0answers
102 views

Deploying rails 3.1 app in subdirectory

I'm trying to deploy my rails 3.1.3 app in a subdirectory on the server: Apache (reverse proxy) => unicorn (listening on localhost:5000) The problem is with url_helper. via the --path switch in ...
0
votes
1answer
26 views

.htaccess fake subdirectory

So I have this code creating a "fake directory" Options +FollowSymLinks RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^(\w+)$ ?username=$1 ...
0
votes
1answer
28 views

Get “Unable to delete directory” error when trying to delete all the sub-directories with ant

My goal is to perform a full clean-up of my workspace. I try to delete all files and sub-directories with ant, including .svn dirs. <delete includeemptydirs="true"> <fileset ...
0
votes
0answers
18 views

MediaWiki like directory system

So if you look at a mediawiki url: http://en.wikipedia.org/wiki/Stack_Overflow You see that the page is a subdirectory of index.php in /wiki. How can I make my script work like ...
0
votes
0answers
124 views

Need PHP upload form to sort files into sub directory based upon dropdown

I am trying to implement a PHP script that will allow the user to select the appropriate category for their file. After selecting the category, the script should move the uploaded file to the ...
0
votes
1answer
32 views

Windows 7 program files folder

I have an application contained in a folder that uses temporal files stored in its own folder. If I copy it directly to "Program Files" folder it fails to find the route to its own subfolders but if I ...
0
votes
1answer
25 views

.htaccess rewrite to subdir can't find its subdirs

I'm about to lose my mind over a .htaccess issue, which i'm apparently not able to solve. what i'm trying to accomplish is: rewrite: example.com -> www.example.com -> /subdir/ What i've got ...
0
votes
1answer
134 views

Subdomain to Folder using Apache mod_rewrite related Problem

I want to map all my subdomain to folder. For example subdomain.domain.com should display content of domain.com/clients/subdmain (Transparently) RewriteCond %{HTTP_HOST} ^(.+)\.oomail\.org ...
0
votes
1answer
36 views

Is this a viable subdirectory System for storing files?

I read somwhere that you cannot put millions of files inside a single folder, and it is usual that people create subdirectories using a hash or somthing... I've read also that there is somthing to do ...
0
votes
1answer
250 views

Comparing Sub-Folders and Copying Files with PowerShell

In continuation from my previous post here: Comparing folders and content with PowerShell ...I'm attempting to compare two directories that contain sub-folders (at least 4 levels deep). The second ...
0
votes
0answers
226 views

hide / rewrite subdirectory .htaccess

The answer to the question how to "hide" or "remove" a sub-directory seems to be (which unfortunately doesn't work): RewriteRule ^/blog/.*?/(.*)$ $1 [NC,L] This should point ...
0
votes
4answers
277 views

How do I list subdirectories in Windows using C++?

how do I list subdirectories in windows using C++? Using code that would run cross-platorm is better.
0
votes
1answer
64 views

.htaccess redirect to a subdirectory for a specific web address

I require some guidance with redirects please: I have two WordPress installations on one hosting - one each in a separate sub-directory. I was able to get the control panel to set up redirects for ...
0
votes
3answers
325 views

Using find to delete all subdirectories (and their files)

I'm sure this is straight forward and answered somewhere, but I didn't manage to find what I was looking for. Basically, I'm trying to run a cron script to clear the contents of a given directory ...
0
votes
1answer
270 views

How to pass session information to a subdirectory in php

I'm creating a simple website in PHP that users can log into. All pages in the root directory work fine, but when I try and start a session on a web page in a subdirectory it doesn't read it This ...
0
votes
2answers
220 views

One Makefile, used in many subdirectories

I'm looking to write a single makefile that calls a target in it itself in all the subdirectories of the current directory. I've come up with this as a starting point: SUBDIRS := $(shell find . ...

1 2