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.
0
votes
1answer
115 views
How to show browse for FOLDER window(not browse for file)using just JSP and javascript?
I need a code for how to browse for folder (not file) using JSP and Javascript.
I looked for the JAVA code for browse for folder using JFileChooser library but I want the default window to be opened ...
0
votes
1answer
60 views
Download files and create the same folder structure as the Host
I have a config file which consists of list of URIs I want to download. For example,
http://xyz.abc.com/Dir1/Dir3/sds.txt
http://xyz.abc.com/Dir2/Dir4/jhjs.txt
http://xyz.abc.com/Dir1/itr.txt
...
0
votes
1answer
72 views
I can't set 0777 as file permissions because owner/group is 48 48
I am trying to create a folder chmod it to 777 but I'm unable to it. It always reverts changes to:
File Permissions: 341 Owner/Group: 48 48
It only happens when I try to create a folder using PHP. ...
0
votes
2answers
50 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 ...
1
vote
1answer
44 views
How to catch folder monitoring in WIN32 API?
I want to catch any change in a directory: For example: add new folder, rename folder, delete folder... It's a WIN32 project not WIN32 Console Application. Thanks,
0
votes
0answers
19 views
Can I use a Google Custom Search to search a specific Drive Folder?
I am trying to build an easy FAQ by using Google Custom Search and a Drive Folder full of documents. I know that I can set up a public drive folder as a Google Hosted Web Page? Does this help my ...
2
votes
2answers
92 views
Relative path of my Java server
I'm trying to create a file in my server. I have sent a image, and I want to create that Image in a folder of my server, but with relative path.
String filePath = ...
-1
votes
1answer
58 views
Windows Azure - how to create the App_Data folder [closed]
I am using a control for cropping an image that requires the App_data folder. This folder is used for storing temporary files by the control.
How can I create this folder on windows Azure, and how ...
0
votes
1answer
48 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
0answers
39 views
Mod_Rewrite Folder Directory to PHP File
I have been resarching but haven't found anything exactly like what I am trying to do. Most are more advanced than what I want to accomplish. So basically I want to redirect a folder to an actual .php ...
1
vote
3answers
68 views
Private folder in PHP?
My website deals with images. Whenever a user uploads an image it will be stored in "imagefiles" folder, but the problem is users can see all the images of that folder on web through http. To prevent ...
0
votes
0answers
82 views
Exchange ews: how to select all appointments of Calendar Folder without time range
I am making a script that migrates all appointments from Sun Ges (xml files) to Exchange 2013 with ews.
Before the migration, I want to clear or delete all appointments in the Exchange Calendar.
In ...
1
vote
1answer
42 views
what is the difference between \ and \\ in file path
What is the difference between single slash and double slash in file path for Windows operating system such as
c:\Personal\MyFolder\\MyFile.jpg
and
c:\Personal\MyFolder\MyFile.jpg
What if i use ...
4
votes
6answers
95 views
how to zip a folder itself using java
Suppose I have the following directory structure.
D:\reports\january\
Inside january there are suppose two excel files say A.xls and B.xls. There are many places where it has been written about ...
0
votes
1answer
81 views
shell script to loop through wildcard matched directories
I am trying to loop through directories that match a wildcard. This works fine in command line. But does not work in Shell script. Any idea?
for dirs in /var/www/html/my.domain.com/v*; do echo ...
0
votes
0answers
20 views
How can i get Images/Videos from a specific folder in my GalleryActivity?
I want to get images/videos out of a specific folder (lets call it "myfolder") and view the files in my Image/VideoGalleryActivity.
I look at many tutorials but I don't find the right answer, they ...
0
votes
0answers
10 views
Windows Service - installation folder
I am working at a windows service.
In my code I need to refer to some files which are on my disk.
How can I manage to take the folders in the windows service installation folder?
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
54 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
0answers
16 views
need to create a watch folder and when a nzb file is place it sends a WOL command
I have a raspberry pi running wheezy. I want it to watch a folder /mnt/movies/nzb (this is a hard drive mounted on my tomato usb router) when a nzb file is placed, it will send a magic packet/wol ...
0
votes
5answers
64 views
htaccess mod rewrite folders hide [closed]
I have been struggling with my htaccess file for a while.. I have the following URL:
http://www.mysite.com/folder1/system/folder2/file.php
I managed to hide the .php extension but now im trying to ...
-1
votes
1answer
88 views
How to get directory folder property in Win32 API?
I want to get directory folder property such as: Date Created, Size, Folder Name,... in WIN32 API using C/C++. What can I do?
Thanks for helping,
0
votes
0answers
46 views
Use JS to get images from folder into UL>li
I need to make an UL > li list (with the appropriate classes) of all images in a folder using js - how do I do that?
It for a (background) slideshow.
0
votes
1answer
46 views
How to move folder using command line in WIN 32 API?
I'm trying to move KFC folder from D drive to C drive using command line in WIN32 API. In KFC folder has an other folder: "New Folder".
I try to using this code but it can't?
CreateProcess( ...
-1
votes
1answer
116 views
loop through an image folder and show in imageview android [closed]
Hi I need to have a folder where images are downloaded. Then iterate through the contents of that folder to show images one by one for pre set time period.
My screen is divided into3 parts. in 1st row ...
-1
votes
1answer
70 views
How to find files whose paths do not exist in the text file using powershell
I need to check and return files that exist in the filesystem, but are not listed in a given text file. For instance, my text file (sample.txt) will contain paths like:
...
2
votes
1answer
73 views
Accessing python parent folder
I've looked through previous answers which seem to suggest I should be able to use:
from .. import code
though it produces this:
ValueError: Attempted relative import beyond toplevel package
...
0
votes
1answer
64 views
PHP array of folders in directory and show files in each folder
I am using the following code to list all folders in a directory (called test), and all files within those folders:
<?php
function listFolderFiles($dir){
$ffs = scandir($dir);
echo '<ol>';
...
2
votes
2answers
33 views
Extract all Urls from a folder
I want to extract all urls from a folder using ruby but i have no idea about this please someone help me.I have expand lot of time on google but i could not find any suggetion
Thx
0
votes
1answer
38 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 ...
0
votes
4answers
48 views
PHP - How to search folder images per order
I have the following code to search the folder /images/ for images and echo them. However, it displays the images from a random order everytime I refresh the page. The images are named 1, 2, 3, 4 and ...
0
votes
1answer
155 views
How do I use the current folder name without a path as a variable in automator in Mac?
I am using Mac OSX 10.8.3.
I have a workflow in Automator set up that is as follows:
Ask for Finder Items
Get Folder Contents
Make Sequential
Move Finder Items
The purpose of the workflow is to ...
0
votes
2answers
326 views
Delete all folders named XXX in folder YYY by DOS command
Under folder YYY, lots of subfolders with different names, I like to delete all folder name XXX, how?
I know del /s YYY/XXX.* but its for delete files, not folders
0
votes
3answers
46 views
How to get and use the path of a folder in eclipse project?
I create a new folder Fold inside my eclipse project Proj. How do I get the path of Fold relative to Proj ? This folder will be used as place to store serialized objects. Will I be able to serialize ...
1
vote
1answer
122 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 ...
0
votes
1answer
42 views
I am trying to force a script to accept user input, but it breaks on the second input
I am new to Power shell and I cant seem to wrap my head around this one.
The Code works when you take the input out and place actual values in for each $number and $Name as seen in the bottom ...
0
votes
2answers
61 views
How to check empty-ness of a folder recursively, excluding a specific folder?
I'm not an expert of linux/unix shell commands.
Sorry for being so specific, but I would like to ask:
Suppose I have a folder and I need to check that it's empty of "simple" files (all files ...
-1
votes
2answers
46 views
PHP increase date by 7 hours
it's working okay so far, but I want to increase the modified date by 7 hours. This means it will be in line with my timezone. I've searched the internet for answers but can't seem to get it ...
0
votes
2answers
116 views
MVC 4 mapping files in directory to controller action to ensure authorized access to documents
If I have a file in a directory on my website:
~/documents/file1.pdf
How can I force requests to the following url to go through a controller:
www.mydomain.com/documents/file1.pdf
The controller ...
-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
1answer
69 views
Copy FOLDER to several multiple folders
I have currently created the following code, it works fine to copy the contents within the folder 'C:\metadata_home\met_source\metadata\' BUT I need to copy the folder as well. When I use the syntax: ...
-1
votes
1answer
63 views
How to Lock folder pro-grammatically in android?
It is possible to Lock folder with password protected programmatically?
http://developer.android provides File-lock but i want to Lock folder not a File.
Android operating system is totally based on ...
1
vote
1answer
34 views
how can i show .git folder in netbeas
I have a project which i check out remotly from my VM.
Now he checks out all files except the one that he dous not see.
Which happens to be the .git folder....
I already removed the regex from the ...
0
votes
1answer
115 views
Eclipse and Android NDK compile C++ Code in another folder than JNI
I Have a folder with follow struct:
/-
|-CPPCore-
|-C++ Code
|-Android-
|-Eclipse Root Project and standarts folders, "src", "lib", "res"..
|-jni folder << here ...
0
votes
3answers
63 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 ...
-6
votes
1answer
37 views
Using Python to create specific folder within multiple folders [closed]
I have a directory containing 450 folders, all unique names. Inside this folder I need to create a sub-folder called Metadata, so it looks like the following:
Folder1/Metadata
Folder2/Metadata
...
0
votes
0answers
45 views
TideSDK - Add folder to build directory
I don't know how to form the question properly.
Anyways. I am using TideSDK for Windows and created a new project using the TideSDK Developer application.
I created many folders which store the ...
-4
votes
3answers
80 views
How to open a random folder within a directory [closed]
I was wondering how I would use a batch file or Python to open a random folder from a selection of many folders within a directory?
-2
votes
2answers
19 views
Finding an invisible folder [closed]
I'm on Mac OS X. I am trying to create a directory named ~/Projects. When I try, I get an error that says "that name is already taken". But I don't see a folder with that name when I look at my home ...





