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

0
votes
0answers
5 views

How to specify the folder in which the applications should get installed on Mac?

I find that when I install applications(.dmg files), they all are installed into the folder /Volumes.And some days ago, they were installed into the folder /Applications. I don't know my macbook had ...
1
vote
1answer
31 views

C++ : loop on all files of a folder (and its subdfolders) : simplest solution?

What's the shortest solution to make a loop on all .mp3 files of a folder (and its subdfolders) with C++, OS=Windows? If possible, I'd like to avoid 3rd party things, such as boost, but if not ...
0
votes
1answer
19 views

How to get windows batch's parent folder

I'm writing a batch file, I need to get the parent folder of this bat file. Is it possibile? NB I mean the parent folder of the batch file not of the current directory of the prompt calling that ...
3
votes
1answer
28 views

Is there a way to copy the folder according to the changes in the day through PHP?

Here I wanted to take the backup of my folder by using PHP I am having the folder structure as follows: ragu |__Raji |__ Ranjith If i am going to take the backup on today means the whole ...
0
votes
1answer
14 views

predefine folder hierarchy in Documents folder

i just realized that all my groups in Xcode are ignored and all files i added to my project are copied into the Documents folder directly. As i have several different types of files i want to keep ...
0
votes
0answers
9 views

Copying just the files from a hierarchy of directories in WIndows? [closed]

The title might seem a bit unclear... What I'm trying to do is to copy all of the files from a group of folders into a different directory, but without copying the folders. For example, if I had: ...
0
votes
0answers
8 views

Batch file error on Windows server 2003 server R2: _“for was unexpected at this time”_

I found the below batch file over internet. It basically deletes the folder based on last modified date. The batch file runs perfectly fine in my Windows XP laptop, but when i try to run the same on ...
0
votes
2answers
34 views

Search for folders created after date X and copy them

I need to go through a large folder (let's call it D:\Files ) which contains about 50.000 folders and about 1 million files, and copy all folders that were created (not modified) after August 31th ...
-1
votes
2answers
30 views

how is the structure of this folders in websites? + php [closed]

i see in some sites they have a folder for each user and number of users are more than 100,000 for Ex: w w w .toofan.biz/user1/ w w w.toofan.biz/user2/ w w w.toofan.biz/user3/ w w ...
0
votes
0answers
9 views

How do I copy a folder with lots of files in it to a NetBeans project?

I try dragging and dropping into the resources and that results in this: http://i.imgur.com/gVH6Pxn.png I don't want all those resources.. Hell I don't even know how I'd open the files contained in ...
-1
votes
0answers
6 views

dividing a folder into subfolders based on other folders, but not coping/moving [closed]

I've got one folder with files like this: Folder 0: A, C, D, F, H, I, M, N, O, T, U, V, W, and then folders like: Folder 1: A, E, I, M, R, V and others Folder 2: B, F, J, N, S, W Folder 3: C, ...
-2
votes
1answer
25 views

Download a folder from website to client machine in asp.net

I have a folder called "Users" on server. There are many users using this website. For each user I create a different folder. The folder's name will be the user's name. In that I have some default ...
0
votes
1answer
33 views

How to Save excel file in vb.net

Previously , I was trying to export gridview value into excel. but with the code given below i am able to export data into excel. but still not able to Save Automatically that excel file into a fixed ...
0
votes
2answers
28 views

Choosing folders with numbers in batch

ok so from the title you might have an idea as to what im trying to accomplish. What I want to do is [ tree ] and show a list of folders ( hence the tree command ) and then allow me to select a ...
0
votes
1answer
77 views

Javascript code to open several files in subdirectories

I'm a fairly new programmer, so please bear with me. I'm attempting something pretty advanced, but I enjoy a good challenge. :~) I'm using Adobe's ESTK (ExtendScript Toolkit) to write a complex ...
1
vote
0answers
11 views

Windows 7 Query Folder Preferences

I was looking at adding a feature to an explorer program. Currently the program does not allow folder based viewing preferences (Pictures, Music, Documents, etc.) but Windows does. So I was wondering ...
-1
votes
1answer
44 views

ffmpeg conversion for an entire folder? [closed]

Ive been using: sudo ffmpeg -i Test.mkv -vcodec copy -acodec libfaac -ac 2 -ab 328k Test.mp4 for individual files, but now I have many gigabytes of mkvs in a folder and would like to do a ...
0
votes
0answers
7 views

UIAutomation in instruments, screenshot organized in folders possible?

I have a question about screen capture with UIAutomation in Instruments. Is it possible to take screenshots and organise them in separate folders? I have an app with different section, and using ...
0
votes
1answer
20 views

Batch Script - Transfering video every day to next folder

I'm recording video from ip-cam via VLC. The length of a recorded video - 1 hour. At this moment, all videos are recorded in a single directory, it's very inconvenient. I'd like to make subfolders in ...
0
votes
0answers
23 views

How can i add pagination for my joomla plugin?

I'm using joomla 2.5 and easy folder listing plugin ( the page where i want to add pagination ) I attached the plugin files plugin files maybe someone can take a look and help me to add pagination ...
-3
votes
0answers
8 views

Mark several random files [closed]

Can anybody help me with this? I need script or anything that can mark number of files from one folder, and if it is possible, copy them to another folder. example: Folder MP3-(thousands of files) ...
0
votes
1answer
9 views

Can I add folders to the Content section of the Solution Explorer?

So a pretty simple question hopefully. I'm creating a game that contains several mini-games within it. So I'm operating on several gamestates and as the individual games get larger and larger so do ...
-1
votes
0answers
8 views

How can I upload FOLDERS to Google Cloud? [migrated]

How can I upload complete folders to my Google Cloud Storage? I tried using Cyberduck, but I can't get my Google login info to work with it. Any ideas for a medium-skill level Mac user to easily ...
0
votes
0answers
15 views

how to unzip file and save into particaular folder

i am trying to unzip a zip file and save into target path i tried these thing var zip = new AdmZip(x); zip.extractAllTo(/target path,false); and then ...
0
votes
1answer
29 views

Best practice for opening folders in Maven

Opening Files in Maven is best done like this: Thread.currentThread().getContextClassLoader().getResourceAsStream("db.properties"); or this: InputStream in = ...
-5
votes
1answer
32 views

In Java, how can I open all applications in the application folder? [closed]

I don't have any code yet, I just need some tips on how to make the program go to a directory (applications), select all, and open them (or open them one by one with a for loop). How do I do this!?! ...
0
votes
0answers
9 views

check if folder is a virtual directory in IIS

I'm using xscript/xml which is lacking in documentation. I need to do a check to see if a certain folder is a virtual directory in IIS?. If so, I delete it. I have the delete part done but cant do the ...
0
votes
2answers
28 views

Windows batch - move x amount of folders+content to another folder

I am in the process of cleaning up and organizing my NAS folders. However, I have folder with over 1800+ folder in it, I need to have this split into 18 folders each containing maximum 100 folders. ...
0
votes
2answers
31 views

I want to check the contents off multiple folders and logs the results with one batch file

I have a running program that batch processes a heap of documents and places them in a DMS. When the program has finished processing each document, it places it in another folder. It then can either ...
0
votes
1answer
18 views

Matlab-how to give path to text files in a folder

I have lots of text files with name file1,file2,file3,.... in a folder called 'text_files'. When I open manually that folder in Matlab directory and perform following it works fine. textFiles = ...
1
vote
1answer
33 views

C - listing files contained in folder and all subfolders

I have a function that reads all files contained in a single input directory. I wanted to make that function read not only files in "main" directory, but also ones contained in all subdirectories. ...
-1
votes
2answers
37 views

How do I join two variables to create a folder name?

What I'm trying to do is create a folder at a designated location and then name that folder with the date and the users initials. I want the user to be able to input the initials when creating the ...
2
votes
2answers
68 views

how to get all subdirectories that has specific folder name in php?

I find out that I can get all subdirectories of the folder with below code in php $address = new RecursiveIteratorIterator( new RecursiveDirectoryIterator($root, ...
0
votes
0answers
24 views

create different folders for different type of users and to create a filter for that

I want to create a neat project that can help me in future to update. I am about to complete my project and now I want to place different files in different folders based on their privileges like a ...
0
votes
2answers
36 views

List all folder names in a text file

Im writing a batch to go through the current directory and list all the folder names in a text file. what i have so far only lists file names. can somebody show me what im doing wrong? @echo ON ...
0
votes
1answer
29 views

empty string from special folder (loadUserProfile is “true”)

I need to use some folder for temp files. I tried to use string directoryPath = HttpContext.Current.Server.MapPath("~/tempFiles"); but when I publish it to IIS I had permission issues. So I ...
-1
votes
1answer
43 views

Creating Folders in a Zip Folder in Java [duplicate]

My task requires me to save a file directory into a zip folder. My only problem is I need to keep the sub-folders as folders from the main Directory. The file system will look something like ...
1
vote
0answers
24 views

[Mac OS]How to share folders with C++

i want to share folders in LAN and i want to offer otional access from public-ethernet too. Is there any way to share folder on Mac OS X with C++? Something like 'Network Share Management ...
0
votes
1answer
42 views

How do you copy a file to a folder with {name:“XXX-X-XXXX” & foo} in Applescript

I have a script I need to write where I have created a folder with this script (below) but cant figure out how to copy a file to the created folder because how its named. set foo to computer name of ...
0
votes
0answers
17 views

Renaming folders according to the average date of contained files

I have almost 4000 different folders, each folder containing one ore more reports made on a special date within a range of 6 years ( 2008 - 2013). I was wondering if there was a way to bulk-change ...
-2
votes
1answer
36 views

Recursively move all files in folders with given name to their parent directory [closed]

I have a document library where all of my files are in folder based on category name but then they are also all in subfolders called 'pdf' as well. Is there a way in bash to scan through all of the ...
0
votes
1answer
50 views

save file to specific folder with curl command [closed]

I want to download file from some link and save to specific folder which I wrote in terminal. What is the specific option I must write for download files to specific folder with curl command?
0
votes
0answers
19 views

Make Apache ignore the first folder?

I want to create a fake folder that is randomly generated and make apache ignore it. So my url would be: example.com/real/anything-here/index.php Does anyone know how to do this? Edit: I figured it ...
0
votes
1answer
25 views

Save user-uploaded files from Maven Clean

This WebApp is developed using Maven with Java on a Tomcat server. Once a user uploads an image it is saved under Project/target/ProjectWithVersion/images (this path is built by using ...
0
votes
0answers
25 views

Following guide to make game for android in eclipse, but adding data folder is not working like it should

I'm following this guide here and when it says: " 4. Finally, we must create a data folder by right clicking on src and creating a folder named data. Inside it, download, drag, and drop this image: " ...
0
votes
1answer
30 views

Oulook script - How to find the root folder of a favorite folder

I am trying to find a way to access the associated public folder of a favorite folder. The goal is to move mails automatically to public folders. In the case where this folder has been defined as ...
-1
votes
0answers
15 views

automatically reply with empty file on request to folder [closed]

i have specific software which accepts а folder as an input parameter. it expects this folder to contain files, which it needs to process. content of the files is not important, but their existence ...
0
votes
0answers
8 views

How to check for latest directory and which does not contain specific words

I'm new to Windows bash programming and wanting to see how to list the latest directory which does not contain a specific word in it. Example: dir a: Test dir b: Test-new How to retrive only the ...
0
votes
1answer
150 views

C# - WPF - getting folder browser dialog without using System.Windows.Forms?

I have this WPF app and I want to have there function of getting a directory path from the user. I would like to use some folder browser dialog but I don't want to implement it from ...
0
votes
0answers
7 views

VS2012 Generate New Type Error/Bug with Solution Folders

Whenever I try to use VS2012's built-in "Generate -> New Type..." to create a class in a different solution folder, I get the following error message: "Generate Type failed: Object reference not set ...

1 2 3 4 5 35