file-listing

List files of certain pattern using Excel VBA

How to list all the files which match a certain pattern inside a user specified directory? This should work recursively inside the sub folders of the selected directory. I also need a convenient way(like tree control) of listing them. ...

how to make file listing using the .bat script

Hello, coders! I have directory structure: pakages |-files.bat |-component |-source |-lib I need to make text file using the files.bat script with file listing like this: File0001=source\WindowT.pas File0002=source\AWindowT.pas File0003=source\AWindowSplash.pas File0004=source\InternalT.pas File0005=source\ImageLister.pas ...

Get a list of all files inside of a directory in vb.net

Title says it all. How can you obtain a list of files (as a stringcollection or some other storage method) which contains the full path on the user's computer to the files? Is there a method for doing so? ...

What's the most simple way to get files only visible in Finder in a directory?

NSFileManager has several method to enumerate directory contents, but they returns all files including hidden or system files which is invisible for users in Finder. I want to get the file list same as Finder. As possible as simple. What do I have to do? ...

C# Getting a complete file list using ftpRequest is slow

I want to get the filename, file size and last modified time of each file on an FTP server, then populate a listView with it. It worked really well until I switched FTP host, and now it's really sluggish, despite the new host being just as fast in real FTP clients. Any apparent reason as to why? Also, is it really neccessary to send t...

Access image in my Android Tests

Hi, I am working on an Android app. It has corresponding spec/test application. As part of some of my tests, I need to pick up an image from my assets folder and calculate SHA-1 for it. I can calculate SHA, as long as I can pick the image. Since the tests run on emulator; I am not sure how to pick the image in my test. Does anyone hav...

Regex for space, but not escaped spaces.

I am parsing the input of ls -lb and trying to put each field into an array in PHP. My input looks something like this: -rwx------ 1 user.name users 546879 2008-09-05 09:23 Newspaper_Templates.pdf -rwx------ 1 user.name users 403968 2009-01-12 14:16 P2_05.ppt -rwx------ 1 user.name users 144896 2009-01-12 14:08 P2.5_Using_CRO...