Tagged Questions

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

49
votes
5answers
21k 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 ...
27
votes
16answers
5k 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, ...
19
votes
8answers
9k 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 ...
18
votes
1answer
544 views

With FireMonkey and its cross-platforms, where should I store my application data?

Usually, with Windows, I save my application's data in the user folder (%appdata%). For that, I use the function ExpandEnvironmentStrings which is linked to Windows to get the folder I need, and I ...
15
votes
4answers
3k 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. ...
13
votes
1answer
63 views

Automatically show a blank page in a folder without a default html page

In my site I have many folders that holds different type of files. /img/ /js/ /styles/ /files/ (I have 20 more and I will add more eventually) Currently, I have in each folder a index.html (my ...
13
votes
3answers
8k views

iPhone create folder inside documents folder

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!
13
votes
10answers
14k views

C# Test if user has write access to a folder

I need to test if a user can write to a folder before actaully attempting to do so. I've implemented the following method (in C# 2.0) that attempts to retrieve the security permissions for the ...
13
votes
7answers
13k 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. ...
13
votes
10answers
15k 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 ...
11
votes
4answers
4k 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 ...
9
votes
2answers
665 views

Have Directory.GetFiles return one file at a time? (.NET)

I have a folder with far too many files in, and I want to go through each file one by one. The problem is that Directory.GetFiles returns a completed array, and this takes too long. I would rather ...
9
votes
12answers
11k 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 ...
8
votes
1answer
1k views

How to check if a string is a valid Windows directory/folder path?

I trying to check if the user-inputted string is a valid install destination, then check if it exists, and create it if not. My problem is with validating that the destination string is formatted ...
8
votes
3answers
2k views

Qt 4.x: how to implement drag-and-drop onto the desktop or into a folder?

I've written a little file-transfer application written in C++ using Qt 4.x ... it logs into a server, shows the user a list of files available on the server, and lets the user upload or download ...
8
votes
6answers
3k 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 ...
7
votes
5answers
4k 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 ...
7
votes
4answers
816 views

Size of folder or file

How can I retrieve size of folder or file in java ?
7
votes
1answer
3k 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 ...
7
votes
7answers
1k views

Best location for exception log files (Windows)

The question where exception logs should go has been discussed here once or twice (or more), and one of the recommendation was that the application should never write to the installation folder. ...
6
votes
2answers
242 views

Python: Opening a folder in Explorer/Nautilus/Mac-thingie

I'm in Python, and I have the path of a certain folder. I want to open it using the default folder explorer for that system. For example, if it's a Windows computer, I want to use Explorer, if it's ...
6
votes
3answers
378 views

Windows folder password

I have been thinking to implement the following program, just out of curiosity and learning experience. I want to write a program for password protecting a folder, so you can only open the folder ...
6
votes
1answer
1k 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); }};
6
votes
5answers
127 views

any idea how pics upload site save there pics?

its more to a architecture related question, sorry if i ask in the wrong stack. do they put them in a large pile im a folder ? like $uid.$md5(random).$name save in one folder ...
6
votes
2answers
6k views

Sharing a folder and setting permissions in PowerShell

I need a script to run on Vista Ultimate to share an external drive and assign full control to Everyone. I've got a batch file to create the share using net share, but there doesn't seem to be a way ...
5
votes
3answers
130 views

delphi get folder path

I m working with Delphi 7 and I want to find out the path of my .. /All Users/Documents directory. I came across the following code uses shlobj, ... function GetMyDocuments: string; var r: Bool; ...
5
votes
2answers
81 views

Plone Folder Restrictions

In Plone, I created a new folder called "Admin" that appears at the top navigation bar. How do I restrict access to this folder so only site administrators will have access to this folder? (and, ...
5
votes
6answers
142 views

PHP create nested directories

I need help with a function to create a 2 level directory for the following situations: The desired sub-directory exists in the parent directory, do nothing. Parent directory exists, sub-directory ...
5
votes
2answers
238 views

A folder where to put “global” shared partial templates

I am using Ruby on Rails 3.0.7 and I am planning to use partial templates. All classes in my application would use same partials so I have to decide where to located all those. Is it a good idea to ...
5
votes
3answers
257 views

Secure wipe a directory

I know how to wipe a file in c# including it's sectors and such. But how do I overwrite the directories themselves? Example: @"C:\mydirectory\" must be unrecoverable gone forever (all files ...
5
votes
4answers
260 views

What is the difference between a directory and a folder?

Most people use the terms "folder" and "directory" interchangeably. From a programmer point of view, is there a difference, and if so, what is it? Does it depend on the OS, or is there a broad, ...
5
votes
5answers
19k 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 ...
5
votes
6answers
757 views

Getting a directory name from a filename

I have a filename (C:\folder\foo.txt) and I need to retrieve the folder name (C:\folder) in unmanaged C++. In C# I would do something like this: string folder = new ...
5
votes
2answers
3k views

zipping a folder/file using qt

i would like to know if we have any class in qt which can zip a folder or file.i used qprocess to compress,it got compressed but i am unable to uncompress it using normal zip tool.can anyone let me ...
5
votes
4answers
6k 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? Thanks
5
votes
4answers
2k views

File / Folder monitoring

What is the best way to monitor disks against file activities. I mean that getting the full file name (c:\temp\abc.txt), action(created/deleted/modified/renamed), and also the user (user1) and process ...
4
votes
1answer
78 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 ...
4
votes
1answer
89 views

Project files for Notepad++?

I love Notepad++. It does everything I need it to do. I don't need a fancy IDE, I do compiling with makefiles from the command line, and the projects I work on aren't insanely huge, they have just ...
4
votes
2answers
103 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
5answers
77 views

Directory recursion and symlinks

If you recursively traverse a directory tree by the obvious method, you'll run into trouble with infinite recursion when a symlink points to a parent directory. An obvious solution would be to just ...
4
votes
3answers
53 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 ...
4
votes
1answer
187 views

Directory/Folder listener in Blackberry

I want to develop an application in blackberry that is running in background and should listen for change in particular folder i.e. whether the file in particular folder/directory has been added or ...
4
votes
1answer
167 views

How to control folder option with C# or registry

I am developing a C# Application and I need to enable/disable the Hide protected system files option in folder settings via C#. It would also be useful to know what changes are made in the registry ...
4
votes
5answers
8k 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 ...
4
votes
3answers
587 views

Find files in a folder using Java

I'm new here so be kind to my stupidity :) What I need to do if Search a folder say C:\example I then need to go through each file and check to see if it matches a few start characters so if files ...
4
votes
2answers
282 views

Is There Any Convention for Android SD Card Storage?

After installing a lot of apps, and building a few myself, I'm sure many people have been wondering about this. If I'm looking through my SD card it looks absolutely horrible, and its really hard to ...
4
votes
6answers
73 views

How to get names of files?

Like, we have folder /images/, it has some files inside. And the script /scripts/listing.php How can we get names of the all files inside folder /images/, in listing.php? Thanks.
4
votes
2answers
202 views

Win32 Perl - Telling the difference between files and folders using a passed directory argument

I'm writing a script in perl strawberry. The first thing it needs to be able to do is take a path argument and get a directory listing for that path, and it needs to be able to distinguish between ...
4
votes
1answer
422 views

How do I test to see that a directory is empty in ANT?

How can one test to see that a directory is empty in ant?
4
votes
2answers
620 views

Mercurial/.hgignore - How do I ignore everything but the contents of a folder?

I have a NetBeans project and the Mercurial repository is in the project root. I would like it to ignore everything except the contents of the "src" and "test" folders, and .hgignore itself. I'm not ...

1 2 3 4 5 16