-1
votes
0answers
8 views

How big corporations like flickr, google images handle and folder their images?

I searched about this a lot and It really makes me curious that, how big corporations store their pictures ?. Is it folder based ? or picture datas that are stored in database ? or tons of folders ...
0
votes
1answer
16 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
10 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
10 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
7 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, ...
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
2answers
33 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 ...
-1
votes
1answer
47 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 ...
0
votes
0answers
19 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
39 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
38 views

Android get every file in a folder

Let's say I have the folder "/sdcard/my_pictures" and it has a bunch of images in it, img1.png, img2.png, ..., img3.png. What is the correct syntax to iterate through these? I want something of the ...
0
votes
1answer
45 views

Receiving a Memory Error?

I work in the office of one of the professors at my college and he has assigned me to read through a whole classes papers to attempt to catch people that plagiarize so I decided to write a program ...
0
votes
1answer
53 views

Iterating Through a Folder of Files

I work in the office of one of the professors at my college and he has assigned me to read through a whole classes papers to attempt to catch people that plagiarize so I decided to write a program ...
1
vote
3answers
85 views

Powershell: Delete a file inside a folder with different name of parent folder

I would like to use this option to delete those files with a specific extension (.cfg in my case) with different name of its folder. For example, if I have in a folder called MYFOLDER and inside this ...
0
votes
2answers
52 views

How to read all files in one folder and apply a function over them in python?

I would like to run a function over all files in one folder and create new files out of them. I have put the code for one file bellow. I would appreciate it if you kindly help me. def ...
0
votes
1answer
50 views

How to save an image automatically to a specific folder or create a new folder if needed after taking a picture using the camera for android

I am currently trying to create an app which when taking a picture using the camera, when saving the image, it saves to a specific folder location and if the folder doesn't currently exist on the ...
0
votes
1answer
19 views

Save a variable file into a folder

I think I managed to mess up my program. Here is the troubled locations. name=inputbox("Type the name here.",,"") Dim file : Set file = CreateObject("Scripting.FileSystemObject") If ...
3
votes
1answer
55 views

Create a File in a Protected Folder

I am attempting to create a folder (and a file inside of it) in a folder that is most likely protected. Here's my code: package me.pogostick29.audiorpg.data; import java.io.File; import ...
0
votes
1answer
40 views

Pure ASP hyperlink for all files in a folder

I recently had a project and couldn't find simple code anywhere.. hope this helps someone! Make sure to set NTFS permissions for the IIS app account on the folder. Use file:// for files http:// for a ...
1
vote
1answer
123 views

FORTRAN 90 How to find out the number of files on a folder

quick doubt, I need to read all the files from a folder, but I don't know how many files are there. I know how to open them all, just don't know when to stop, i.e. when all the files are read. ...
-2
votes
1answer
114 views

Linux or windows bash script for moving files into different no existing folder [closed]

My problem is that I have copied a folder with some files from my friend. The files are as abc 1.pdf abc 2.pdf abc 3.pdf . . . . abc 999.pdf xyz 1.pdf xyz 2.pdf xyz 3.pdf . . . xyz 999.pdf I want ...
-2
votes
2answers
47 views

How to go through folders and then write every file within those folders? [closed]

How to go through folders and then write every file within those folders? If there is a folder within a folder we need to go through that first and then get back to the older directory.
0
votes
3answers
65 views

A script to automatically delete folders in another folder

I've came across several posts and even code online about .batch files to delete folders and files. However, I am still pretty confused by the myriad amount of information that's on the Internet. Is ...
0
votes
0answers
49 views

Guidance on NetBeans folder structure / file placements [closed]

Hi seasoned NetBeans experts, please can you provide some guidance on where to place files related to my Java application? I have written a simple business support system in Java, broken down into ...
-1
votes
4answers
103 views

How to delete everything in a folder with C# [duplicate]

I need a function to clear the entire content of a folder. ASP.Net cannot delete folders if the folder is not empty.
-1
votes
1answer
57 views

What makes a file into a folder? [closed]

What is the (file system specific) difference between a file and a folder? Why are different methods in java.nio.file.Files required to create the one or the other? createDirectory(..) and ...
0
votes
0answers
78 views

turn a folder and all the sub folders into a file (like zipping) and later restore the folder [closed]

I have tried dotnetzip library, csharpzip library, system io packaging, and shell32 zipping. all works in win7 but on xp machine unzipping fails. Is there any way other than mentioned above, to ...
2
votes
1answer
294 views

Powershell: Copy selected files in subfolders

I have a folder c:\graphics (root) and a program creates subfolders aa, bm, czx, mjpq, zz (this is a example, i have many subfolders, length it's variable). In each subfolder, i have 26 files and one ...
-2
votes
2answers
90 views

deleting folders with python scripts

a = '/mnt/task/a' b = '/mnt/task/b' Under a and b , There are some folders, with names like 201212194546921-6ab-45654545d-5445c As you see, the folders' names are made up of things like serial ...
1
vote
2answers
64 views

JAVA - Get access to a file in different subfolder

I am programming a file transfer, and i am having troubles with it. In my current location i have created a folder called "Server Folder", where i will have files that the Client can transfer (I will ...
0
votes
0answers
31 views

What is the .empty file for?

I've recently come across a situation when an "empty" folder used by an application contains a .empty file. For example, an application has a folder for logs, and when there are no logs yet, this ...
0
votes
1answer
75 views

Java read image from 2 directories up

How can I place an image on screen that is 2 directories up? Here's my code: package mousemaze; // Imports import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; ...
-1
votes
1answer
519 views

copy files from one location to another in powershell script, in addition checking for certain values

So I have folder with files in it, in a certain location C:\Users\ainfowara\Desktop\testfiles so I want to move those files to this location C:\Users\ainfowara\Desktop\destinationTestfiles the ...
2
votes
3answers
107 views

Move a file to under a directory using C#

string str = "C:\\efe.txt"; string dir = "D:\\"; I want to move or copy "efe.txt" file under "D:\" directory. How can I do that. thanks for your advice.....
1
vote
1answer
38 views

Order in which PHP lists files

Basically I have a php script that lists all the files in a directory and creates links to them. However it seems to order the files in a very arbitrary fashion (not according alphabetically/by date/ ...
0
votes
1answer
79 views

VBS script to grab all images and add value to duplicates

I'm looking to grab all the files out of the E:\ drive without specifying a folder. I want the script to just grab all the files in the E: drive. Here is my script I have. I've tried multiple ways to ...
0
votes
2answers
73 views

File copy action error android

I have got this code. @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); File srcFolder = new ...
0
votes
2answers
290 views

Make Eclipse copy source files in output folders

I read (and sometimes write in) a .txt file in my java project and I'd like it to be copied in the eclipse output folder called "bin". Can eclipse do it while compiling ? My project is like : ...
0
votes
1answer
114 views

File copy action android

I am trying to make a file copy action with this code but it gives me an error Syntax error, insert "}" to complete ClassBody MainActivity at the place where i put ** help me please package ...
-5
votes
1answer
57 views

Android copy action [closed]

I just wanna ask for the code which will copy the folder with files from sdcard to other location. Just write me how to do it if you know how to. I prefer copy from sdcard to specific location. ...
0
votes
1answer
113 views

Save all the folder structure with DotNetZip

I did this simple code with the latest version of the library DotNetZip, for some reason when I add a file I get all the folder structure. For example if I add: C:\one folder\two folders\File.doc ...
1
vote
2answers
192 views

How to open and view the folder from my computer?

Edited Question: try{ folder=jTextField1.getText()+"_portfolio"; String path="E:/test folder/"+folder+""; Desktop.getDesktop().open(path); }catch(Exception E){ } I got ...
0
votes
1answer
70 views

Processing.js - Listing files from sketch directory

I'm new here, so hello everyone! I wrote a few things in Processing language and now I need to switch to Processing.js. I need to write an app that first scans the sketch folder to prepare a list of ...
0
votes
0answers
19 views

Identifying duplicate folders

Can the approach proposed in Finding duplicate files and removing them easily be extended to identify (the highest) overlapping sub-folder(s)?
0
votes
2answers
374 views

how to check if a specific file extension exists in a folder using powershell?

I have a root directory that consists of many folders and sub folders. I need to check whether a particular file like *.sln or *.designer.vb exists in the folders or subfolders and output the result ...
1
vote
0answers
41 views

create shortcut to the latest file of a folder in windows

is there a way to creat shortcut always point to the latest (or the largest etc) of a folder in windows? eg: abc/file1   2012-01-01 xxx abc/file2   2013-01-01 xxx ...
0
votes
1answer
207 views

Batch file to move folders to sub-folders

Here is my current folder structure: C:\Invoices\**CustomerName**\January I'm looking for a script that will go through ALL the CustomerNames and move the January folder to ...
0
votes
1answer
39 views

Folder not created on android device

I take a picture with my android device and in the method onPictureTaken of the classe PictureCallback I have written File imagesFolder = new File(Environment.getExternalStorageDirectory(),"test"); ...
2
votes
3answers
212 views

File and Folder Attributes - Programming API

I knew that PHP is able to read file content by different ways, for example: fread, file_get_contents, file, readfile, etc. Currently, I am looking for an API that can read real index of files and ...
0
votes
0answers
82 views

Listing files using ACConnect WebDav protocol

I have downloaded ACConnect library from here Does anybody know how to get the listing of directories and files using this library. I was able to upload, download and create folder using the same on ...

1 2 3 4 5