Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
1answer
7k views

Recursive directory listing in dos

How do we achieve recursive directory listing in DOS? I'm looking for a command or a script in DOS which can give me the recursive directory listing similar to ls -R command in UNIX.
8
votes
3answers
392 views

how to iterate over non-English file names in PHP

I have a directory which contains several files, many of which has non-english name. I am using PHP in Windows 7. I want to list the filename and their content using PHP. Currently I am using ...
5
votes
2answers
671 views

Directory.GetFiles() pattern match in C#

I'm using Directory.GetFiles() to list files according to given pattern. This works fine for most of patterns I'm looking for (e.g. zip, rar, sfv). This is how I prepare the list (more or ...
4
votes
1answer
650 views

How do I use File::Find::Rule in taint mode?

I am trying to get a list of subdirectories in a given directory using something like the following: #!/usr/bin/perl -wT use strict; use warnings; use File::Find::Rule; use Data::Dumper; my ...
3
votes
1answer
307 views

How to make a chronological list of files, with the file modification date

I want to create a list of those files in a directory which have the extension .bas, and which were modified after June 1, 2011. Also, I'd like to know how to optionally have the files in the list ...
3
votes
6answers
363 views

What is the fastest / easiest way to count large number of files in a directory (in Linux)?

I had some directory, with large number of files. Every time I tried to access the list of files within it, I was not able to do that or there was significant delay. I was trying to use ls command ...
3
votes
3answers
211 views

File system iterator for C++

I'd like a basic C++ STL-like container for the filesystem. e.g. std::filesystem::const_iterator i = filesys.begin(); i->file_name(); i->full_path(), etc.. Does something like that ...
3
votes
4answers
1k views

Directory Walker for Python

I am currently using the directory walker from Here import os class DirectoryWalker: # a forward iterator that traverses a directory tree def __init__(self, directory): self.stack = [directory] ...
3
votes
1answer
1k views

Recursive directory listing using Ruby with Chinese characters in file names

I would like to generate a list of files within a directory. Some of the filenames contain Chinese characters. eg: [试验].Test.txt I am using the following code: require 'find' dirs = ["TestDir"] for ...
2
votes
1answer
44 views

How can I turn listings on for just one folder in my webapps, as opposed to every folder

At the moment I have listings enabled(see code below) which means everyfolder is affected. how can i make it so that only webapps/myProject/myFolder is listable? <init-param> ...
2
votes
1answer
87 views

Allow directory listing only for a IP

I've activated directory listing with this line in the .htaccess: Options +Indexes How can I limit this to only one IP address with having access to all files/directories for everyone (every IP)?
2
votes
1answer
416 views

custom directory listing handler in ruby for nginx

I just found this question on serverfault which details how to create a custom directory listing handler for nginx with a php script. I would like to do the same thing but with a ruby script. ...
2
votes
3answers
561 views

How to order files by last modified time in ruby?

How to get files in last modified time order in ruby? I was able to smash my keyboard enough to achieve this: file_info = Hash[*Dir.glob("*").collect {|file| [file, File.ctime(file)]}.flatten] ...
2
votes
6answers
5k views

Recursively List all directories and files

Hi I would like to recieve the following output - Suppose the directory structure on the file system is like this: -dir1 -dir2 -file1 -file2 -dir3 -file3 ...
2
votes
5answers
6k views

Get the contents of a server-side directory in SAP ABAP

I need to get a listing of a server-side directory inside SAP. How do I achieve this in ABAP? Are there any built-in SAP functions I can call? Ideally I want a function which I can pass a path as ...
1
vote
2answers
72 views

Is it possible to use .htaccess to make custom Index Of pages? If so how?

You know how when you go to a url on a server and the directory doesn't have an index.* file or a default.* file it shows you a list of the directorie's contents? I was wondering if there is any way ...
1
vote
3answers
96 views

Faster way to get a directory listing than invoking “ls” in a subprocess

After a search, and some test runs both os.popen()+read() and subprocess.check_output() seem to be almost equivalent for reading out the contents of a folder. Is there a way to improve either a ...
1
vote
1answer
158 views

Directory listing for one folder htaccess

I've a folder structure like: home | snippets---other----bla | | | a--b--c d--e--f g--h--i | | | | | | | | | filesfilesfilesfilesfilesfiles I've ...
1
vote
1answer
241 views

how to configure apache to view hidden (`.`) files?

How do I make a directory listing in apache show the ./hidden files? I tried both <Directory /var/www/*> Options Indexes FollowSymLinks MultiViews AllowOverride None ...
1
vote
0answers
142 views

iPhone - listing files in remote directory (before downloading)

I am wondering if it is possible to list files in a remote (public) directory such as http://www.mysite.com/mydirectory/ in objective C with the iPhone SDK. If anyone could point me in the right ...
1
vote
2answers
155 views

ASP.NET. Hiding whole site structure. Is it possible?

I guess all everybody else would like the opposite but i need to hide the "directory" structure of an ASP.NET website. For this reason i am thinking of Use the robots.txt as follows... User-agent: ...
1
vote
3answers
530 views

PHP recursive directory listing - directories ONLY

I am working on a file manager project and can't seem to get my head around doing a recursive directory listing where I only get the directories. Everything I've tried either leaves off empty ...
1
vote
2answers
2k views

read the contents of a directory using shell script

I'm trying to get the contents of a directory using shell script. My script is: for entry in `ls`; do echo $entry done However, my current directory contains many files with whitespaces in ...
1
vote
2answers
935 views

PHP/Apache, options +indexes in htaccess doesn't work for root directory

I need to offer a directory listing of the root directory of my site, so I created an .htaccess file containing options +indexes It works for subdirectories, but for the main directory I get the ...
1
vote
2answers
230 views

How to stop Apache from listing the contents of my user directories

I recently ran some penetration testing software on my web site and was surprised for it to report that one of my directory listings was publicly accessible. It is the directory of the root user ...
1
vote
3answers
1k views

Download files from a directory listing

Is it possible to download all the files from a directory listing? Eg., the following link leads to a listing. http://www.arthika.net/1234TB/new/Kuruvi/ Please point me to some related API's to ...
0
votes
2answers
42 views

Can I create a “simple” Cyclic Redundancy Check program in Python?

I am quite green in the ways of Python programming and was tasked with creating a simple program that ran a CRC check. Can anyone suggest a good start point on which modules to use/read up on? I ...
0
votes
6answers
53 views

Selecting a file from a stated directory in Python

I want to select a file by numbers at left side of listing but I can't go more than this: import os path="/root/Desktop" dirList=os.listdir(path) for fname in dirList: print fname selected = ...
0
votes
2answers
48 views

Empty HTML href leads to directory listing in IE

I have a website with separate HTML files (actually .shtml, but this is unimportant for this issue). These shtml files contain a picture, and a forward- and backbutton so I can switch back to the ...
0
votes
0answers
30 views

How to prevent IE8 from trimming white spaces when viewing a text file (Web Server - Tomcat)

Can anybody tell me how to preserve the white spaces of a text file when viewing it from Internet Explorer 8? The text file is in my web server which is tomcat 6. It is viewed by the use of directory ...
0
votes
0answers
247 views

enumeratorAtURL and contentsOfDirectoryAtURL call not working?

I have a folder in my ~Site folder. The folder contains images. I need to traverse the folder and list the contents. So, I used the api call NSDirectoryEnumerator *enum = [NSfileManager ...
0
votes
1answer
97 views

Powershell prevent recursive lookup of parent folder only search child folders

I have created a script which can find all files in a provided directory of a specified format. The script will recursivly search the folder structure for these files. Write-host "Please enter ...
0
votes
3answers
195 views

How can I list all the files in folder on tomcat?

I have got a folder with many excel documents in it on tomcat and i want those files to be available when i got go the that folder's url in the browser (eg http;//localhost:8080/myfolder) at the ...
0
votes
4answers
103 views

Invalid use of incomplete type 'DIR'

I'm trying to compile this code, which works fine on Windows, on Linux (Code::Blocks): /* Edit: Includes */ #include <sys/types.h> #include <sys/stat.h> #include <dirent.h> #include ...
0
votes
0answers
20 views

recursive directory listing from a zip file

How do I retrieve directory listing from a zip file on fly? Anyone can help me? My idea is to extract the zip file in a temp folder and from their retrieve diretory listing but is it even possible to ...
0
votes
0answers
185 views

index.jsp in Jetty failing to redirect when dirAllowed=false

I was tasked with correcting a listable directories vulnerability in a Java web project running on Jetty. I did this by adding the following to the project's frontend jetty config XML file as a child ...
0
votes
1answer
79 views

Convert `ls -lR` output to format of `find` output

Convert ls -lR output to format of find output E.g. I have a text file, which is an output of ls -lR. The file contains: /tmp/1: total 0 drwxr-xr-x 3 user1 ubuntu 80 May 10 21:13 2 -rw-r--r-- 1 ...
0
votes
0answers
117 views

IndexIgnore Wildcard failes on Apache/2.2.8 (Ubuntu)

I figured out the shell wildcard for "everything but pdf" ls *.!(*pdf) and ventured that it might work in Apache/2.2.8 (Ubuntu) htaccess as IndexIgnore *.!(*pdf) to "Exclusivly display PDF in ...
0
votes
1answer
369 views

Use mod_rewrite to create custom directory index in Apache

So, Apache's default directory listing sucks and mod_autoindex's customisation options suck, so I figured I could write some rewrite rules in my server root to redirect any requests to a directory: ...
0
votes
3answers
105 views

Why does opendir not show folders with a single interger as the name

I have a script that opens a directory, checks if the folders matches an array, and then opens them. In the directory there is a list of folders like "apache2-50", but when the script opens that ...
0
votes
3answers
182 views

Getting directory listing over http

There is a directory that is being served over the net which I'm interested in monitoring. It's contents are various versions of software that I'm using and I'd like to write a script that I could run ...
0
votes
1answer
80 views

Directory Listing Security

if i have some index.html\index.php in any directory of my website.. is there any way that some amateur hacker can get the directory listing of that directory and directly download files from that ...
0
votes
2answers
612 views

HttpWebRequest command to get directory listing

In the following post I followed the examples to create my httprequest and list files from webServer directory: C# HttpWebRequest command to get directory listing I'm trying to use the example there ...
0
votes
3answers
4k views

Vbscript list all PDF files in folder and subfolders

Well here is my code but I just can not filter the listing using the objFile.Extension i am sure it is some thing silly Set objFSO = CreateObject("Scripting.FileSystemObject") objStartFolder = ...
0
votes
1answer
138 views

how can i do Directory Listing Denied for my project folders?

i have a project with many folders in it ... (vs 2008 - asp.net - c#) how can i do Directory Listing Denied for my project folders when a client try to view those folders using address bar? thanks ...
0
votes
1answer
182 views

How to know what kind of directory listing style the FTP server is using?

I have to create my own FTP client. I found there are two kinds of directory listing styles a FTP server might use, UNIX and MS-DOS. Is there a way that I can send an message to FTP server, to ask ...
0
votes
3answers
1k views

File explorer java

I'd like to have some kind of file browser like Windows Explorer inside a Java Application. I just want something that's able to list file inside a folder recursively. Is there a simple way to do ...
0
votes
2answers
879 views

IIS Directory listing doesn't reconize .mkv files

I use the directory listing function in IIS to upload a bunch of files for friends and family to easy access and download. My problem is that .mkv files it lists but when you click it i get a 'The ...
0
votes
2answers
167 views

List files that don't match a string in bash

I'm a newbie in bash and I would like to pass as parameter to a python function all files in a directory that don't match a given pattern. sth. like: $myscripts/myprog.py $myfiles/!(bonjovi) The ...
0
votes
2answers
229 views

How to get the list of files in a directory in a shell script?

I'm trying to get the contents of a directory using shell script. My script is: for entry in `ls $search_dir`; do echo $entry done where $search_dir is a relative path. However, $search_dir ...

1 2