1
vote
2answers
61 views
Bash - Recursively Create Nonexistant Subdirectories
Hello all,
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 director …
0
votes
4answers
159 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.
0
votes
1answer
45 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 sub …
0
votes
3answers
30 views
Appending a txt file from multiple CSVs in subdirectories
Hi,
I am trying to write a batch file which will append all *.csv files in the immediate subdirectories to a single text file in the current directory.
From various sources I hav …
0
votes
1answer
46 views
website subdirectory - move up?
So for development purposes, we had our folder structure for our website something like this... web/testing/companyName/current/index.aspx. Web is the root folder.
Now, we are a …
1
vote
2answers
191 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 ht …
2
votes
1answer
82 views
Retrieving info of a very large directory
Hello,
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 t …
0
votes
3answers
226 views
Makefile in top level directory and sources in the subdirectories problem
I have a directory called "project".
It contains two sub-directories called "client" and "server" and a makefile called "Makefile".
client and server have got source files called " …
0
votes
3answers
260 views
Create dynamic subdirectories using htaccess and php
Every single time a user registers on my site I would like them to have their own subdirectory with their registered "username". Every user subdirectory will have the same "index.p …
0
votes
0answers
40 views
Point domain name to subdirecty [closed]
Hi I have a server under one main domain, and I want to point another domain to /example/index.php to make another site.
Is there anyway i can do this with .htaccess?
cheers
4
votes
9answers
1k 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 subdirec …
1
vote
4answers
111 views
1 domain two separate applications.
Hi, I have:
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 …
0
votes
1answer
468 views
(avr-gcc) Makefile support for sub-directories
Hi;
I am working on an AVR project and have multiple folders containing my code.
The makefile I am using is the "Standardized AVR Makefile Template" by Pat Deegan.
It's capable o …
2
votes
2answers
348 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
- …
5
votes
4answers
428 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/
…
