A folder or directory is a virtual container within a digital file system, in which groups of computer files and other folders can be kept and organized.

learn more… | top users | synonyms

6
votes
2answers
9k views

upload image from iphone to the server folder

i found few snippet from online to upload image from iphone to the server folder, its showing to use server side scripting eg. use php at server side if ...
22
votes
8answers
29k views

Zip folder in C#

What is an example (simple code) of how to zip a folder in C#? Update: I do not see namespace ICSharpCode. I downloaded ICSharpCode.SharpZipLib.dll but I do not know where to copy that DLL file. ...
89
votes
5answers
40k views

How to move a single folder from one Subversion repository to another repository?

I have a "docs" folder in a Subversion repository named "project". I've come to the conclusion that it should really be kept under a separate Subversion repository named "project_docs". I'd like to ...
8
votes
5answers
13k views

Make a File/Folder Hidden on Windows with Java

I need to make a file and/or folder hidden on both Windows and Linux. I know that appending a '.' to the front of a file/folder will make it hidden on Linux, but how do I do this on Windows?
17
votes
5answers
6k views

Size of folder or file

How can I retrieve size of folder or file in java ?
35
votes
17answers
8k views

RAMDrive for compiling - is there such a thing?

An answer (see below) to one of the question right here on SO gave me an idea for a great little piece of software that could be invaluable to coders everywhere. I'm imagining a RAMDrive software, ...
41
votes
4answers
26k views

Create a folder inside documents folder in iOS apps

I just want to create new folders in the documents folder of my iPhone app. Does anybody know how to do that? Appreciate your help!
32
votes
7answers
60k views

Read all files in a folder

I want to read all the files in a folder through Java. Can anyone help me?
9
votes
4answers
9k views

How to delete empty subfolders with PowerShell

I have a share that is a "junk drawer" for end-users. They are able to create folders and subfolders as they see fit. I need to implement a script to delete files created more than 31 days old. I ...
11
votes
6answers
6k views

Vista and ProgramData

What is the right place to store program data files which are the same for every user but have to be writeable for the program? What would be the equivalent location on MS Windows XP? I have read that ...
18
votes
10answers
27k views

Adding folders to a zip file using python

I want to create a zip file. Add a folder to the zip file and then add a bunch of files to that folder. So I want to end up with a zip file with a single folder with files in. I dont know if its ...
8
votes
4answers
6k views

How can I get the size of a folder on SD card in Android?

Is it possible to easily get the size of a folder on the SD card? I use a folder for caching of images, and would like to present the total size of all cached images. Is there a way to this other than ...
15
votes
1answer
10k views

How does git handle folder permission?

I'm using git version 1.5.6.3, and it seems git doesn't notice a folder's mode changes #create a test repository with a folder with 777 mode :~$ mkdir -p test/folder :~$ touch test/folder/dummy.txt ...
4
votes
6answers
5k views

Easy way to get size of folder (ObjC/Cocoa)?

Right now I'm using this code to get the size of a folder: NSArray *contents; NSEnumerator *enumerator; NSString *path; contents = [[NSFileManager defaultManager] ...
1
vote
1answer
349 views

Unique Folder Identifier

Earlier today someone generously answered my question regarding the retrieval of a unique identifier associated with files on the computer. Unique File Identifier The solution worked great, however, ...
44
votes
14answers
35k views

C# Test if user has write access to a folder

I need to test if a user can write to a folder before actually attempting to do so. I've implemented the following method (in C# 2.0) that attempts to retrieve the security permissions for the ...
16
votes
6answers
31k views

Android - How to delete a whole folder and content?

I want the users of my application to delete the folder DCIM which is on the SD card and contains folders. I want them to do this when they click on a button within the application? is this ...
12
votes
3answers
21k views

Getting the filenames of all files in a folder [duplicate]

Possible Duplicate: Read all files in a folder I need to create a list with all names of the files in a folder. For example, if I have: 000.jpg 012.jpg 013.jpg I want to store them in a ...
10
votes
2answers
12k views

Codeigniter 2.0 third_party folder

what is this the third_party folder in codeigniter 2.0 and how to use that? thanks!
7
votes
11answers
17k views

How to delete a folder in C++

How can I delete a folder using C++? I found something on the Internet, but it did not help me :( Can somebody help me? Thank you
4
votes
3answers
2k views

Get target of shortcut folder

How do you get the directory target of a shortcut folder? I've search everywhere and only finds target of shortcut file.
4
votes
1answer
2k views

Auto refresh eclipse project upon folder update

I want to know if there is a way to enable auto refresh of eclipse project whenever there is an update on the folder consisting project files. For instance when i update the files from version control ...
81
votes
9answers
214k views

How to set chmod for a folder and all of its subfolders and files in Linux Ubuntu Terminal?

So I want a way to set chmod 755 to /opt/lampp/htdocs and all of its content including subfolders and files, and If I create a new folder or file the chmod of that should be also 755. chmod 75 ...
45
votes
5answers
12k views

Moving Files into a Real Folder in Xcode

When I started my project I was happy to use Groups in Xcode rather than literal folders: Since I'm using the browser in Xcode to access everything, stuff was nicely organized and I was happy. ...
42
votes
4answers
12k views

node.js require all files in a folder?

How do I require all files in a folder in node.js? need something like: files.forEach(function (v,k){ // require routes require('./routes/'+v); }};
21
votes
4answers
8k views

Max files per directory in S3

If I had a million images, would it be better to store them in some folder/sub-folder hierarchy or just dump them all straight into a bucket (without any folders)? Would dumping all the images into a ...
34
votes
15answers
23k views

How to quickly check if folder is empty (.NET)?

I have to check, if directory on disk is empty. It means, that it does not contain any folders/files. I know, that there is a simple method. We get array of FileSystemInfo's and check if count of ...
31
votes
6answers
13k views

How to “undelete” a deleted folder in Subversion / TortoiseSVN?

We have accidentally deleted the 'tags' folder from our Subversion repository where we only intended to delete one specific tag. What is the easiest way to get the 'tags' folder back? We use ...
30
votes
8answers
15k views

What is a solution folder in visual studio

I have a vs 2008 solution and I would like to include a real folder in the solution, but not at the project level, instead at the solution level. I noticed you can right click the solution and add a ...
16
votes
3answers
9k views

Get names of all files from a folder with Ruby

I want to get all file names from a folder using Ruby.
5
votes
4answers
7k views

Copy files from a folder of SD card into another folder of SD card

Is it possible to copy a folder present in sdcard to another folder present the same sdcard programmatically ?? If so, how to do that?
7
votes
2answers
10k views

Web Application (Django) typical project folder structure

I am very new to web development, just wanted to figure out if there is a recommended(preferred) project folder structure to use (may be even specific to Django based projects). Thank you.
6
votes
6answers
8k views

Listing all the folders subfolders and files in a directory using php

Please give me a solution for listing all the folders,subfolders,files in a directory using php.My folder structure is like this Main Dir Dir1 SubDir1 File1 File2 SubDir2 File3 File4 ...
4
votes
3answers
147 views

Directory recursion

If you need to recursively traverse a directory tree, there are two ways to do it: Build up pathnames of increasing length as you go, .../.../... etc. Use chdir to step down into each directory as ...
0
votes
1answer
4k views

How to access the iPhone Library folder programmatically

I heard in this TUAW Article that iPhone apps should stop using the Documents folder to store files. Instead they should use the library folder. How do you access the Library folder to store files ...
9
votes
5answers
9k views

Best way to iterate folders and subfolders

What's the best way to iterate folders and subfolders to get file size, total number of files, and total size of folder in each folder starting at a specified location?
2
votes
2answers
3k views

Git merge from a specific folder only

I've created a rails website for client X. I now have a client, Y, who wants a website that does the exact same thing as client X, but with a different skin. I made a git branch from clientXcode and ...
1
vote
3answers
2k views

PHP get path to every file in folder/subfolder into array? [duplicate]

Possible Duplicate: PHP SPL RecursiveDirectoryIterator RecursiveIteratorIterator retrieving the full tree I am not sure where to start. But I have to get the paths to all files in a folder ...
0
votes
3answers
3k views

Upload a folder in ASP.NET of Flash or Silverlight

Is there any way to upload entire folder (a folder) in asp.net? Is there any way to upload in Flash or Silverlight?
2
votes
2answers
6k views

android: how to hide folder from appearing in the Gallery

I have an application that creates a folder in the sd-card. After that, I do several operations which may result in storing different media files, graphics in my folder. The problem is that this ...
0
votes
1answer
1k views

Can't create folder in extsd card

I have an android tablet where external SD card called "/mnt/extsd" and its internal storage called "/mnt/sdcard". When I am try to create a folder in "/mnt/sdcard" by the following code. Application ...
0
votes
4answers
4k views

how to upload folder with php

Is it possible to upload folder with browser? I search in google and find out that this is broswer limitation must use java applate or flash. Is there any way to upload folder with flash. i can not ...
8
votes
1answer
6k views

list the subfolders in a folder - Matlab (only subfolders, not files)

I need to list the subfolders inside a folder using Matlab. If I use nameFolds = dir(pathFolder), I get . and .. + the subfolder names. I then have to run nameFolds(1) = [] twice. Is there a ...
7
votes
2answers
9k views

Android: How to find the absolute path of the assets folder?

I need to get the absolute path of the assets folder in my app as I want to serve the files within using a webserver and it needs the absolute path. Is this possible? I would have thought there might ...
2
votes
4answers
801 views

Java copy a folder excluding some internal file

I have a folder with this structure mainFolder --Sub1 --File .scl --File .awl --Other files --Sub2 --Files --Sub3 --Sub4 I want to copy it to ...
1
vote
2answers
1k views

How do I distinguish a file or a folder in a drag and drop event in c#?

I have a form that you drag and drop files into and I was wondering how can I make the application know if the data is a file or a folder. My first attempt was to look for a "." in the data but then ...
1
vote
4answers
113 views

PHP: let a file return its own directory

I am having trouble finding the rigth directory on my online server. is there a function that returns the folder the file is stored in?
1
vote
3answers
2k views

how to create password to folder using c#

how to create password to windows folder using c# shall I set password to folders when it is created.
1
vote
1answer
2k views

Install directory from deployment projects

I'm developing an application and I'm going to deploy it with the help of a deployment project (which is gonna create an installer). At one step in the installer, it will allow the user to change the ...
1
vote
3answers
3k views

PHP delete the contents of a directory

How do I do that? Is there any method provided by kohana 3?

1 2 3