Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
4answers
645 views

Retrieving files from directory that contains large amount of files

I have directory that contains nearly 14,000,000 audio samples in *.wav format. All plain storage, no subdirectories. I want to loop through the files, but when I use DirectoryInfo.GetFiles() on ...
11
votes
8answers
3k views

GetFiles with multiple extentions

How do you filter on more than one extension? I've tried: FileInfo[] Files = dinfo.GetFiles("*.jpg;*.tiff;*.bmp"); FileInfo[] Files = dinfo.GetFiles("*.jpg,*.tiff,*.bmp");
9
votes
2answers
670 views

Have Directory.GetFiles return one file at a time? (.NET)

I have a folder with far too many files in, and I want to go through each file one by one. The problem is that Directory.GetFiles returns a completed array, and this takes too long. I would rather ...
8
votes
4answers
7k views

Ignore folders/files when Directory.GetFiles() is denied access

I am trying to display a list of all files found in the selected directory (and optionally any subdirectories). The problem I am having is that when the GetFiles() method comes across a folder that it ...
5
votes
6answers
88 views

Using C#, how to know whether a folder is located on a network or not

Using C#, I would like my application to return whether a folder (with an already known path) is located in a network or in my computer. How can I do that?
5
votes
3answers
3k views

UnauthorizedAccessException cannot resolve Directory.GetFiles failure

Directory.GetFiles method fails on the first encounter with a folder it has no access rights to. The method throws an UnauthorizedAccessException (which can be caught) but by the time this is done, ...
4
votes
3answers
68 views

Weird functionality in .NET's Directory.GetFiles() when search pattern contains 3 chars for extension

I recently bumped into a weird functionality from Microsoft: Let's assume our folder c:\tmp123 contains 3 files - 1.txt 2.txtx 3.txtxt a) Invocation of Directory.GetFiles(@"C:\tmp123", "*.txt") ...
4
votes
1answer
340 views

trying to use Directory .EnumerateFiles(“*.jpg”, SearchOption.AllDirectories);

So i'm using Directory.GetFiles(folder, "*.jpg", SearchOption.AllDirectories). When i try it on the c:\ drive in windows 7, since windows 7 still had c:\documents and settings (for legacy systems like ...
2
votes
3answers
1k views

Sorting the result of Directory.GetFiles in C#

I have this code to list all the files in a directory. class GetTypesProfiler { static List<Data> Test() { List<Data> dataList = new List<Data>(); string ...
2
votes
2answers
155 views

Get directory where executed code is located

I know that in the same directory where my code is being executed some files are located. I need to find them and pass to another method: MyLib.dll Target1.dll Target2.dll Foo(new[] { ...
1
vote
2answers
185 views

F# Interactive Developement DirectoryNotFoundException: Could not find a part of the path 'C:\Users\Bob\AppData\Local\Temp\MyFolder\'

When using F# interactive apparently this line of code will search in the path shown in the subject line. let files = Directory.GetFiles("MyFolderPath") Is there any way to set interactive to ...
1
vote
2answers
187 views

Directory.GetAllImageFiles How should i do it?

I would like to get fill a String array with all the images found within a directory. Till now i use the following to get all the images with jpg format Dim List() as string = ...
1
vote
1answer
515 views

How to refresh System.IO.DirectoryInfo.GetFiles().Length

I'm having trouble with getting the uptodate amount of files in a directory. The files are being printed from PDFCreator and being sent to that folder. When the number of files in the folder match the ...
1
vote
3answers
2k views

How to check if a specific file exists in directory or any of its subdirectories

In C#, how do I check if a specific file exists in a directory or any of its subdirectories? System.IO.File.Exists only seems to accept a single parameter with no overloads to search ...
0
votes
1answer
49 views

UnauthorizedAccessException while getting files

I am creating an application which finds duplication in files. When I search files like: try { string[] allFiles = Directory.GetFiles( directoryPath, "*.*", SearchOption.AllDirectories ...
0
votes
2answers
79 views

getFilesDir() in a subclass to View

Can I use the method getFilesDir() in a .class that use extends View? public void save(){ try { File myDir = new File(getFilesDir().getAbsolutePath()); FileWriter fw = new ...
0
votes
2answers
54 views

how can i filter only .sql files using directory.getfiles

I am trying to filter the only.sql files from given Directory path But it will compress the all files in the given directorypath string directorypath = @"C:\access"; DirectoryInfo di ...
0
votes
4answers
58 views

How to output each file and folder in directory hierarchy

I'm looking for a way to all files and folders and files in those folders. As an example. if I have - Root + file1 + file2 -- Directory -+ file1 -+ file2 ---Directory --+ file1 --+ file2 I would ...
0
votes
4answers
602 views

Listing Folders in a Directory using asp.net and C#

.aspx file: <%@ Import Namespace="System.IO" %> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <title>Explorer</title> </head> ...
0
votes
1answer
384 views

Passing multiple extensions to the System.IO.Directory.GetFiles method [closed]

Possible Duplicate: GetFiles with multiple extentions How can I specify multiple extensions for the System.IO.Directory.GetFiles method? I have tried. string[] files = ...
0
votes
7answers
389 views

Exact file extension match with GetFiles()?

I'd like to retrieve a list of files whose extensions match a specified string exactly. DirectoryInfo di = new DirectoryInfo(someValidPath); List<FileInfo> myFiles = new List<FileInfo>(); ...
0
votes
2answers
78 views

How to get these files as elegant as possible?

I have some files in the form of: blur.static.shadereffect blur.dynamic.shadereffect blur.virtual.shadereffect soften.static.shadereffect soften.dynamic.shadereffect soften.virtual.shadereffect ...
0
votes
2answers
101 views

Why does this unit test say my directory doesn't exist when it does?

This code URL listofFiles = this.getClass().getResource("someDir"); File f = new File(listofFiles.toString()); File[] files = f.listFiles(); runs in a JUnit unit test in a Tomcat webserver ...
0
votes
3answers
962 views

Multiple filters with Directory.GetFiles?

I'm trying to use multiple filters with the Directory.GetFiles() command. So say I want to match both .html and .css files. I'm using this: Directory.GetFiles(path,"*.html|*.css"); I don't see any ...
0
votes
2answers
176 views

how to download a file from a url with javascript?

how to download a file from a url with javascript? I'm trying to get from a textfield a user enters a url as follows: new Ext.form.TextField({ disabled: false, ...
0
votes
9answers
604 views

PHP - Code to traverse a directory and get all the files(images)

i want to write a page that will traverse a specified directory.... and get all the files in that directory... in my case the directory will only contain images and display the images with their ...
0
votes
2answers
331 views

Looking for the best way to load list view showing thumbnail pictures of a folder

I've got the following code files = di.GetFiles("*.jpg"); for (int i = 0; i < files.Length; i++) { il.Images.Add(System.Drawing.Image.FromFile(folder + "\\" + files[i].Name)); ...
0
votes
2answers
32 views

how to get file from a passworded area using PHP

I want to make a script that takes a URL to a file and will import that file to a specific folder in my web server how to request a file if it's in a passworded area, i have an account ...
0
votes
2answers
2k views

Using WindowsIdentity to get a list of files/directories in ASP.NET while logged in using Forms Authentication

Edit 7: I'm guessing this can't be done after all, might need to use some kind of command line application to do this and and parse the output, although I expect this could be very slow when lots of ...
0
votes
3answers
3k views

VB.NET: GetFiles Method - “Access to the path 'G:\System Volume Information' is denied.”

Here is my code, Dim allFiles As FileInfo() = tempDir.GetFiles("*.pdf", SearchOption.AllDirectories) I've googled and found that I need to change the permissions of my app ...
0
votes
3answers
3k views

Directory.GetFiles works, Directory.GetDirectories doesn't on the same directory

I have a simple file selector on my web application which uses Directory.GetFiles and Directory.GetDirectories to produce the UI. This works perfectly on my localhost, but when I upload it to my ...