Tagged Questions
The subfolder tag has no wiki summary.
4
votes
2answers
104 views
Creating dirset that includes the subfolders of the folders
I have a property called source-locations and it contains a comma separated list of folders where source code can be found.
source-locations=src,other_src_dir,yet_another_dir
In one of my ant ...
4
votes
3answers
1k views
Tortoise SVN: how to svn update folder but NOT its subfolders?
This is probably something that has got a simple solution, but I'm probably not good at all in using Tortoise SVN.
I have this working direcetory that I checked out some time ago:
/folder
file1
...
4
votes
2answers
872 views
Auto-push changes to one folder in a git repository to github?
I have a repository that I work in. There's one folder in there where I put all the stuff I want to open source so it's separate from the private parts. Is there a way to automatically get git to push ...
4
votes
1answer
139 views
about SUBDOMAIN vs SUBFOLDER question again?
I am planing to create a site,
where my root domain www.example.com has an index page where it will let the users CHOOSE 3 website
namely politics.example.com , games.example.com, news.com
or ...
4
votes
5answers
2k views
DNS- Route DNS for subfolder to different server?
LEt's say I want to have a subfolder called- http://www.foo.com/news/ but I actually want that news folder on a different server. I realize it can be done easily with subdomains, but I was really ...
3
votes
2answers
47 views
Import module from subfolder
I want to import subfolders as modules. Therefore every subfolder contains a __init__.py. My folder structure is like this:
src\
main.py
dirFoo\
__init__.py
foofactory.py
dirFoo1\
...
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
19k views
Sharepoint: How do I filter a document library view to show the contents of a subfolder?
A number of business areas I work with use a folder structure to organise their Sharepoint housed documents (not ideal I know, but we're stuck with it).
I would like to use a web part page to ...
2
votes
1answer
105 views
Using visual basic to access subfolder in Inbox?
Dim olApp As Outlook.Application
Dim objNS As Outlook.NameSpace
Set olApp = Outlook.Application
Set objNS = olApp.GetNamespace("MAPI")
Set myOlItems = objNS.GetDefaultFolder(olFolderInbox).Items
I ...
2
votes
2answers
106 views
write one big file or multiple small files
I'm wondering what is better in therms of performance: write in one big text file (something about 10GB or more) or use a subfolder system that will have 3 levels with 256 folders in each one, the ...
2
votes
2answers
100 views
Creating a mod_rewrite rule in an htaccess file
I am trying to create a mod_rewrite rule to direct people to a sub-folder. Currently the code looks as follows:
RewriteEngine On
RewriteCond %{HTTP_HOST} abcsite.com$ [OR,NC]
RewriteCond ...
2
votes
2answers
220 views
Mapping a secondary domain to a subdirectory using mod_rewrite
I am looking to map a secondary domain to a subfolder on my document root.
For example, if requests to the domain www.example.com map to my DocumentToot, then requests to www.exampletwo.com go to ...
2
votes
1answer
840 views
How to get Galley Thumbnail for particular image folder in android?
I have some saved images at Pictures folder in SD Card. I want to access those images of my folder directly.
I have used the below code to pick Gallery images directly.
Intent intent = new ...
2
votes
2answers
293 views
.htaccess redirect from directory it's in to specific subdirectory without filename
I have a server. (Apache).
On this server there is a subdirectory (subdir1). In this subdirectory, I have an .htaccess file. How can I set up this .htaccess file to redirect me from the directory it ...
2
votes
1answer
419 views
Rails: Creating subfolders in model?
I'm going to have a ton of subclasses, so want to organize them under a subfolder called stream. I added the following line to the environment.rb so that all classes in the subfolder would be loaded:
...
1
vote
0answers
44 views
How do I organize the source code of a CUDA C project using subfolders?
I develop some parallel computing code using CUDA C. The system is running a Ubuntu based Linux, the IDE of choise is Eclipse Indigo.
I set up the project using the template which is delivered with ...
1
vote
3answers
118 views
Javascript Redirect with Google Analytics
I need help figuring out how to successfully redirect while including Analytics code.
I have a subdomain setup http://buuf.fractalsystems.org
The subdomain is actually just a subfolder ...
1
vote
1answer
56 views
List of files (in folder,subfolder from a drive) with last access parameter PS1 powershell
Can you help me please?
I search a script for list all files in folder/ Subfolder with a last access date.
i have a script for show a subfolder.
get-childitem -Recurse | Where {$.psIsContainer -eq ...
1
vote
3answers
80 views
Package name is different than the folder structure but still Java code compiles
I am using Notepad++ to write my Java code and Command Prompt to compile and run it.
Following is my sample Java code,
package abraKadabra;
public class SuperClass{
protected int ...
1
vote
2answers
85 views
Zend Framework in subdirectory
I'm banging over the wall with this...
I need to establish a zend framework application inside a subdirectory.
i.e. the domain is tricell.ss and I want to use tricell.ss/tricell as application main ...
1
vote
3answers
38 views
.htaccess and url rewriting challenge
My problem is very simple.
I have several folders in my root:
[folder1]
[folder2]
[folder3]
And my domain is something like: http://johndoe.net
I keep my website in [folder1], so basically I ...
1
vote
1answer
87 views
CodeIgniter htaccess subfolder problem
I want a second website in my domain inside the folder test
www.mydomian.com/test
Apache server running on linux.
But when I load it in my navigator styles, images, helpers can't be found.
My ...
1
vote
1answer
65 views
DOS Batch file - Need help to reading a text file to create a folder then two sub folders in the that folder
for /F "tokens=*" %* in (C:\Test.txt) do (md "C:\TEMP\%*" || cd "C:\TEMP\%*" || md "Computer" || md "Email")
With this command I can create the one folder per name in test.txt but it won't let me ...
1
vote
1answer
110 views
Create a new repo from sub folder in Mercurial Repo using convert
I am trying to extract a folder (call it Project1) from an existing Mercurial Repo (call in MainRepo) using the Convert extension for Mercurial to Mercurial conversion. I have followed the methods ...
1
vote
2answers
282 views
Running Zend Framework in a subfolder - Problems with default controller
I am starting a Zend application and I need to put it in a sub folder like this:
/subfolder
application
public
...
I did the following:
I set the base url in application.ini:
...
1
vote
2answers
130 views
How Do I Create a Sub-Folder via PHP?
I am trying to create a directory that is inside of a folder called upload. Here is my current simple code that I tried to get this done:
<?php
$thisdir = getcwd();
$new_dir = '145';
...
1
vote
2answers
338 views
.htaccess in root and subfolder, each to redirect to own index.php
I apologise for a seemingly duplicate question, but none of the dozens I've looked at actually had the same problem.
I have the following directory structure:
/.htaccess
/index.php
...
1
vote
1answer
200 views
Codeigniter controller in subfolder extends outside one
Is it possible a controller inside a subfolder, lets call it 'category', extends from a controller from the parent folder?
Example:
application_controller.php in the controller folder
category in ...
1
vote
3answers
151 views
cmd loop and output subfolder location
Can anyone tell me how to set up a .bat file that would do the following in windows:
let's say I have: c:\somefolder\ from which I run dostuff.bat which then prints the full addresses of the ...
1
vote
1answer
151 views
How many files is most advised to have in a Windows folder (NTFS)?
we have a project that constitutes a large archive of image files...
We try to split them into sub-folders within the main archive folder.
Each sub-folder contains up to 2500 files in it.
For ...
1
vote
3answers
279 views
SEO: Subdomains or subfolders for Wiki?
I'm currently working on a multilingual Wiki and need to decide if I should use subdomains or subfolders to separate each language.
I know that most people would normally recommend subfolders for ...
1
vote
2answers
242 views
Subfolders in lib
I have a module called user_searches. It performs some searches that aren't core to the user model, thus, why I'm putting the responsibility somewhere else. I want to organize all my models like ...
1
vote
1answer
77 views
Windows Azure DocumentRoot
does somebody know how it is possible to change the document root for windows azure web application to a sub folder?
Thx
1
vote
2answers
135 views
Subfolder traversal
I have a set of subfolders 3 levels deep over with over 20k files in c:\MyData.
There is an almost identical set of subfolders on my E drive at e:\projects\massdata
I want to check in C and anything ...
1
vote
2answers
149 views
Limiting RecursiveIteratorIterator() recursion depth
i'm using RecursiveIteratorIterator() to explore subfolders of my current path, but in this way all trhe tree is explored, instead i want just the direct childern of my fodler to be explored for ...
1
vote
1answer
157 views
Syntax for loading observers (in a model subdirectory) in environment.rb?
I have a lot of model observers, so I want to organize them in a subdirectory under the model folder.
model --> observer --> user_observer.rb, activity_observer.rb, etc.
Prior to placing in ...
1
vote
3answers
2k views
ASP.NET C# Copy Directory with SubDirectories with System.IO
I need to copy a whole directory C:\X to C:\Y\X, and I need the sub-folders to be copied as well.
Is there any way to do it with the System.IO.File\Directory namespaces ?
Thanks for all helpers!
1
vote
3answers
749 views
batch file to merge .js files from subfolders into one combined file
I'm struggling to get this to work. Plenty of examples on the web, but they all do something just slightly different to what I'm aiming to do, and every time I think I can solve it, I get hit by an ...
1
vote
3answers
2k views
Installing a CodeIgniter application in a subfolder
I'm trying to install an application made with codeIgniter in a subfolder, so that I can access it using : http://www.domain.com/my_subfolder/
At the root, there's a Wordpress application.
I edited ...
1
vote
1answer
589 views
Iphone checking subfolder existence, if exist delele subfolder, else and create subfolder
I'm new in Iphone programing, I need code to:
check if a specific target subfolder exist in the document folder ?
if target subfolder exist in document folder, I want to delete target subfolder
if ...
1
vote
2answers
4k views
Get full directory contents with AppleScript
I need to get the entire (visible) contents of a folder and its subfolders as a list. Is this possible?
1
vote
2answers
635 views
Subfolders and mod-rewrite
I need to alter this current re-write rule to accommodate for an admin folder. Here is my current mod-rewrite code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond ...
0
votes
1answer
18 views
Getting value from sub-folders to a PHP page using CodeIgniter
In my site I have a folder called module. It has two sub-folders called module1 and module2. Both of them have a index.php page. My site is developed in CodeIgniter.
In module1/index.php I have the ...
0
votes
0answers
34 views
htaccess rewrite rule for subfolder [closed]
Possible Duplicate:
.htaccess for subfolder
My site structure is
-www
-subfolder
In www I have my main site's index.php.
In subfolder I have a sort of admin UI and in there I have ...
0
votes
0answers
25 views
Folder sturucture not creating in installscript msi project from installshield 2011
I want to create the setup of my project from Installshield 2011 in installscript MSI project and the folder structure should be
company_name->
product_name->
Help,
Include,
...
0
votes
2answers
43 views
Configure htaccess to ignore webroot subfolder, but to serve files contained within that subfolder, webroot contains a URL aliased webapp
I have a Drupal website that has a page at the URL alias of /news however the client also needs to store files within the physical /news/ folder for legacy purposes (files linked from old newsletters ...
0
votes
2answers
45 views
view .m files in a folder (including subFolders) in MATLAB
I have a Folder Factors inside Project folder. (all inside MyDocuments/Matlab). I need the list of all .m files in the folder FACTORS. Factors has subFolders and these subFolders hold all the .m ...
0
votes
0answers
24 views
Moving ASP.NET MVC project to a subfolder
I'm developing an ASP.NET MVC 3 project. I've started the project for Root folder. But when I finish the project, I might need to move the project to a subfolder on the host. If I set the subfolder as ...
0
votes
2answers
52 views
.htaccess to make a subfolder the main folder for primary domain, but getting redundant redirects when URL is typed directly into browser
Problem:
I'm using .htaccess to make a subfolder the main folder for my primary domain.
Everything seems to be working fine, except I noticed that when I type a URL directly, such as ...
0
votes
0answers
91 views
How to modify web.config for IIS 7.5 for Joomla subfolder installation-two different CMS running on same domain
Someone helped me a while ago by putting this line on the web.config file of the root site which was running with Joomla. Then I created Korean CMS with subfolder which had its own web.config and it ...